hahacjh
既然选择了远方 便只顾风雨兼程
上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 1,FCKeditor 编辑器最新版本: 2.3.1站点:http://www.fckeditor.net演示:http://www.fckeditor.net /demo特点:开源、免费 支持绝大多数浏览器支持语言多ASP.Net * ASP * ColdFusion * PHP * Java * Active-FoxPro * Lasso * Perl * Python2,eWebEditor... 阅读全文
posted @ 2010-06-23 16:58 hahacjh 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 有时候我们要对时间进行转换,达到不同的显示效果 默认格式为:2005-6-6 14:33:34 如果要换成成200506,06-2005,2005-6-6或更多的该怎么办呢 我们要用到:DateTime.ToString的方法(String, IFormatProvider)  using System; using System.Globalization; String format="D";... 阅读全文
posted @ 2010-06-22 12:47 hahacjh 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 属于Server类HtmlEncodeUrlEncode 阅读全文
posted @ 2010-06-21 11:31 hahacjh 阅读(161) 评论(0) 推荐(1) 编辑
摘要: 1:Default页default.aspx:代码default.aspx.cs代码Target.aspx.cs代码Target2.aspx.cs代码Transfer.aspx.cs代码来自:http://www.asp.net/general/videos/how-do-i-implement-a-cross-page-postback-in-aspnet 阅读全文
posted @ 2010-06-20 19:12 hahacjh 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1.创建站点导航文件Web.sitemap;2.config文件:代码aspx文件:代码 阅读全文
posted @ 2010-06-19 17:20 hahacjh 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 1.定制出错页面: <system.web> ...... <customErrors mode="On" defaultRedirect="ErrorPage.htm" /> ...... </system.web> 其中,mode属性表示是否启用定制的用户页面,它可取三个值,如下所示: On 启用定制的出错页面 Off 禁用定制的出错页面 RemoteOn... 阅读全文
posted @ 2010-06-19 15:58 hahacjh 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1.Asp.Net中几种相似的标记符号: < %=...%>< %#... %>< % %>< %@ %>解释及用法答: < %#... %>: 是在绑定控件DataBind()方法执行时被执行,用于数据绑定如: < %# Container.DataItem("tit") %>< %= %>: 在程序执行时被调用... 阅读全文
posted @ 2010-06-18 22:06 hahacjh 阅读(973) 评论(0) 推荐(0) 编辑
摘要: 1.获取前一个页面的信息:Page1:代码Page2:代码2.几种控件用法:代码代码代码 阅读全文
posted @ 2010-06-18 18:08 hahacjh 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1.SQLServer代码2.Access代码 阅读全文
posted @ 2010-06-17 10:58 hahacjh 阅读(1733) 评论(0) 推荐(0) 编辑
摘要: SqlConnection conn = new SqlConnection("Server=(local);DataBase=test;User=sa;Pwd=sa"); SqlDataAdapter da = new SqlDataAdapter("select * from test", conn); DataSet ds = new DataSet(); da.Fill(ds); data... 阅读全文
posted @ 2010-06-14 23:02 hahacjh 阅读(1130) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页