摘要: 1. mode有三个值:On、Off、RemoteOnlyOn:不管是服务器还是客户看到的都是GenericErrorPage.htmOff:禁用自定义错误信息,本地和远程用户都会看到详细的错误信息。RemoteOnly:在服务端看到的是错误信息,而客户端看到的是定制错误页面。2.设置... 阅读全文
posted @ 2012-07-18 21:34 liqipeng 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 缓存是以空间来换取时间的手段。缓存是改进网站性能的第一个手段,就像索引时改进数据库性能的第一个手段一样。主要有三种缓存:①页面缓存标签就可以启用页面缓存,这样整个页面都会被缓存。页面中代码、数据源在缓存期间都不会被执行,而是直接输出缓存页面的内容。Duration表示缓存的时间,以秒为单位。缓存是针... 阅读全文
posted @ 2012-07-18 20:55 liqipeng 阅读(102) 评论(0) 推荐(0) 编辑
摘要: .aspx .aspx.cs protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { ... 阅读全文
posted @ 2012-07-18 20:17 liqipeng 阅读(168) 评论(0) 推荐(0) 编辑
摘要: ClientScript.RegisterStartupScript(GetType(), "警告", "alert('只允许上传.jpg,.jpeg,.gif,.png的图片')", true);e.Cancel = true;return;RegisterStartupScript注册页面加载... 阅读全文
posted @ 2012-07-18 20:10 liqipeng 阅读(115) 评论(0) 推荐(0) 编辑
摘要: private string GetMd5(string input) { // Create a new instance of the MD5CryptoServiceProvider object. MD5 md5Has... 阅读全文
posted @ 2012-07-18 20:09 liqipeng 阅读(817) 评论(0) 推荐(0) 编辑
摘要: protected void ListView1_ItemCommand(object sender, ListViewCommandEventArgs e) { if (e.CommandName == "EnableUr") ... 阅读全文
posted @ 2012-07-18 20:05 liqipeng 阅读(280) 评论(0) 推荐(0) 编辑
摘要: ListView的默认分页是先从数据源取得所有的数据,然后截取当前页面所需要的数据需要用到2005以后的一个函数 row_number返回的是结果集的行号,而不是表的行号select Id, name, row_number() over(order by Id)from T_Users查询x行到... 阅读全文
posted @ 2012-07-18 20:03 liqipeng 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 新增编辑查看标题...内容...InsertItemPosition="none"不显示插入模板不要用HyperLink,因为渲染会出问题FormView简介外部控制FormView的模式①FormView1.ChangeMode(FormViewMode.Edit);//切换编辑模式②FormV... 阅读全文
posted @ 2012-07-18 20:02 liqipeng 阅读(166) 评论(0) 推荐(0) 编辑
摘要: ListView搭配DataPager控件实现分页实现了IPageableItemContainer接口的控件可以使用DataPager进行分页但是ASP.NET中目前只有ListView实现了这个接口①将DataPager声明到ListView中来用,在LayoutTemplate中在ListV... 阅读全文
posted @ 2012-07-18 20:00 liqipeng 阅读(279) 评论(0) 推荐(0) 编辑
摘要: ValidatorReuest=false;CKFinder是CKEditor的插件添加bin\Release下的CKFinder.dll的引用core ckfinder.js ckfinder.html config.ascx解压到CKFinder的目录按照文档修改CKEditor的config.... 阅读全文
posted @ 2012-07-18 19:59 liqipeng 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1. 默认情况下ASP.NET是启用ViewState的,这样会在页面生成冗长的隐藏字段,ViewState对于需要PostBack的页面才能有用,而对于类似新闻展示页面则完全没有必要启用ViewState。2. 禁用ViewState的方式:①页面整体禁用ViewState:在顶部的Page中En... 阅读全文
posted @ 2012-07-18 19:44 liqipeng 阅读(183) 评论(0) 推荐(0) 编辑