摘要:
private string GetMd5(string input) { // Create a new instance of the MD5CryptoServiceProvider object. MD5 md5Has... 阅读全文
摘要:
protected void ListView1_ItemCommand(object sender, ListViewCommandEventArgs e) { if (e.CommandName == "EnableUr") ... 阅读全文
摘要:
ListView的默认分页是先从数据源取得所有的数据,然后截取当前页面所需要的数据需要用到2005以后的一个函数 row_number返回的是结果集的行号,而不是表的行号select Id, name, row_number() over(order by Id)from T_Users查询x行到... 阅读全文
摘要:
新增编辑查看标题...内容...InsertItemPosition="none"不显示插入模板不要用HyperLink,因为渲染会出问题FormView简介外部控制FormView的模式①FormView1.ChangeMode(FormViewMode.Edit);//切换编辑模式②FormV... 阅读全文
摘要:
ListView搭配DataPager控件实现分页实现了IPageableItemContainer接口的控件可以使用DataPager进行分页但是ASP.NET中目前只有ListView实现了这个接口①将DataPager声明到ListView中来用,在LayoutTemplate中在ListV... 阅读全文
摘要:
ValidatorReuest=false;CKFinder是CKEditor的插件添加bin\Release下的CKFinder.dll的引用core ckfinder.js ckfinder.html config.ascx解压到CKFinder的目录按照文档修改CKEditor的config.... 阅读全文
摘要:
1. 默认情况下ASP.NET是启用ViewState的,这样会在页面生成冗长的隐藏字段,ViewState对于需要PostBack的页面才能有用,而对于类似新闻展示页面则完全没有必要启用ViewState。2. 禁用ViewState的方式:①页面整体禁用ViewState:在顶部的Page中En... 阅读全文