摘要: 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) 编辑
摘要: 问题来自百度知道:要求不要开辟另外的内存空间,我应该没做到。但至少效果实现了。我的方法是: static void Main(string[] args) { string sentence = "Recetly, hospitals in many... 阅读全文
posted @ 2012-07-06 01:47 liqipeng 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 今天打算试着写个小聊天程序,但是要用到获取本机IP,以前从没用过,就收集了种获取本机IP的方法,备用。① private void GetIP() { string hostName = Dns.GetHostName();//本机名 ... 阅读全文
posted @ 2012-07-04 00:52 liqipeng 阅读(909) 评论(0) 推荐(0) 编辑
摘要: 用WindowsMediaPlayer控件写了一个小播放器,只是一个小尝试首先要添加Windows Media Player到工具箱右击工具箱->选择项(I)... -> 显示"选择工具箱项" -> COM组件 -> Windows Media Player wmp.dll 添加然后拖了一个Win... 阅读全文
posted @ 2012-07-03 00:54 liqipeng 阅读(291) 评论(0) 推荐(0) 编辑