上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 43 下一页
摘要: Third edition Ongoing work Characteristics James Lewis "the project management as the planning,scheduling,and controlling of project activities to meet project objectives" The PMBOK Guide defines... 阅读全文
posted @ 2008-08-25 17:44 许晓光 阅读(208) 评论(0) 推荐(0) 编辑
摘要: Application state is a global storage mechanism that is accessible from all pages in the web application. 阅读全文
posted @ 2008-08-25 11:25 许晓光 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1.保存Session protected void Button1_Click(object sender, EventArgs e) { Session["Name"] = TextBox3.Text; } 2.读取Session protected void Button2_Click(object sender, EventArgs e) { string name = (stri... 阅读全文
posted @ 2008-08-22 14:26 许晓光 阅读(191) 评论(0) 推荐(0) 编辑
摘要: A page developer can disable view state for the page or for an individual control for performance. However, control state cannot be disabled. 下面的例子解释控件状态和视图状态 1.创建自定义ASP.NET服务器控件 自定义控件代码 Code ... 阅读全文
posted @ 2008-08-21 14:11 许晓光 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2008-08-20 11:33 许晓光 阅读(190) 评论(0) 推荐(0) 编辑
摘要: A query string is information that is appended to the end of a page URL. http://www.cnblogs.com/xuxiaoguang/admin/EditPosts.aspx?postid=1271301 阅读全文
posted @ 2008-08-19 15:36 许晓光 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1.视图状态 ViewState.Add("Test", VariableName); if (ViewState["Test"] != null) { Variable = (VariableType)ViewState["Test"]; } 2.EnableViewState属性 默认为True,维护控件状态,__VIEWSTATE的状态信息回传到... 阅读全文
posted @ 2008-08-18 13:25 许晓光 阅读(231) 评论(0) 推荐(0) 编辑
摘要: Cookies provide a means in Web applications to store user-specific information. For example, when a user visits your site, you can use cookies to store user preferences or other information. When the ... 阅读全文
posted @ 2008-08-15 11:34 许晓光 阅读(235) 评论(0) 推荐(0) 编辑
摘要: Sample Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1 protected void Button1_Click(object sender, EventArgs e) 2 { 3 ... 阅读全文
posted @ 2008-08-14 12:59 许晓光 阅读(270) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 public partial class _Default : System.Web.UI.Page 2 { 3 protected void Page_PreLoa... 阅读全文
posted @ 2008-08-13 16:53 许晓光 阅读(130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 43 下一页