上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
摘要: 简单控件: Label - 文本显示控件,虽然说属性中可以设置此控件的诸多样式,但是不建议大家使用,而是使用CSS来设置相应的样式 格式: <asp:Label runat="server" Text="要显示的内容"> </asp:Label> Literal - 用来显示文本,text中的内容会 阅读全文
posted @ 2016-07-18 15:51 枫炎 阅读(623) 评论(0) 推荐(0) 编辑
摘要: 用户登录 用户名: 密码:&nbsp&nbsp&nbsp&nbsp &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nb... 阅读全文
posted @ 2016-07-18 13:54 枫炎 阅读(1092) 评论(0) 推荐(0) 编辑
摘要: Repeater - 重复器,用来展示泛型集合中的数据 五大模板: 1、HeaderTemplate - 头模板,加载时会在开始执行一次 2、FooterTemplate - 脚模板,加载时会在最后执行一次 3、ItemTemplate - 项模板,数据源的数据有多少条就会重复多少次 4、Alter 阅读全文
posted @ 2016-07-18 13:39 枫炎 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 简介: ASP.NET 是.NET FrameWork的一部分,是一项微软公司的技术,是一种使嵌入网页中的脚本可由因特网服务器执行的服务器端脚本技术,它可以在通过HTTP请求文档时再在Web服务器上动态创建它们。 指 Active Server Pages(动态服务器页面) ,运行于 IIS(Int 阅读全文
posted @ 2016-07-18 10:38 枫炎 阅读(854) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; ... 阅读全文
posted @ 2016-07-18 09:49 枫炎 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 在一个程序中,这些独立运行的程序片断叫作“线程”(Thread),利用它编程的概念就叫作“多线程处理”。 使用首先引用命名空间 using System.Threading; 线程和进程的区别在于,子进程和父进程有不同的代码和数据空间,而多个线程则共享数据空间,每个线程有自己的执行堆栈和程序计数器为 阅读全文
posted @ 2016-07-03 21:20 枫炎 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 为了深刻描述程序动态执行过程的性质,人们引入“进程(Process)”概念。 进程的概念主要有两点: 第一,进程是一个实体。每一个进程都有它自己的地址空间,一般情况下,包括文本区域(text region)、数据区域(data region)和堆栈(stack region)。文本区域存储处理器执行 阅读全文
posted @ 2016-07-03 20:29 枫炎 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 将窗体属性里面IsMdiContainer的值改为true 阅读全文
posted @ 2016-07-03 19:49 枫炎 阅读(209) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Wind... 阅读全文
posted @ 2016-07-03 19:31 枫炎 阅读(173) 评论(0) 推荐(0) 编辑
摘要: printDocument 设置打印对象的各项初始属性,需要首先设置,面向对象的操作 打印控件分三步 1、打印页面设置 pageSetupDialog 2、打印预览 printPreviewControl 打印预览控件,不经常用 printPreviewDialog 打印预览对话框,常用 3、打印 阅读全文
posted @ 2016-06-30 22:17 枫炎 阅读(499) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页