上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
  2009年4月7日
摘要: 当在一个ASP.NET Web页面中进行操作时,在默认情况下向当前页进行提交。这种行为在ASP.NET出现之前并没有什么关系,但在 ASP.NET中当我们想向另外一个Web页提交一个Web Form时该如何做呢?在ASP.NET1.0中这个问题变得很难解决,但在 ASP.NET2.0中为开发人员提供了更容易的解决的技术:跨网页提交。这种技术允许一个网页在提交数据时提交给另外的一个页面。在跨网页提交... 阅读全文
posted @ 2009-04-07 11:49 heart-in-sky 阅读(240) 评论(0) 推荐(0) 编辑
  2009年3月30日
摘要: private void toolStripButton1_Click(object sender, EventArgs e) { ReportDocument doc = new ReportDocument(); doc.Load("CrystalReport1.rpt"); TableLogOnInfo ta... 阅读全文
posted @ 2009-03-30 17:15 heart-in-sky 阅读(178) 评论(0) 推荐(0) 编辑
摘要: private void toolStripButton1_Click(object sender, EventArgs e) { DataSet ds = new DataSet(); OpenFileDialog openFileDialog=new OpenFileDialog(); openFileDial... 阅读全文
posted @ 2009-03-30 13:35 heart-in-sky 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 水晶报表 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 CrystalReportSource1.ReportDocument.Load(Server.MapPath("report/CrystalReport.rpt"));... 阅读全文
posted @ 2009-03-30 10:35 heart-in-sky 阅读(2057) 评论(2) 推荐(0) 编辑
  2009年2月26日
摘要: http://zhenggm.blog.hexun.com/15719663_d.html 微软操作系统发展至今只有以下三个操作系统可以使用远程桌面功能,他们是WINDOWS 2000SERVER,WINDOWS XP和WINDOWS 2003。 1)WINDOWS 2000SERV... 阅读全文
posted @ 2009-02-26 08:54 heart-in-sky 阅读(2820) 评论(0) 推荐(0) 编辑
  2008年11月30日
摘要: 锁的概述 一. 为什么要引入锁 多个用户同时对数据库的并发操作时会带来以下数据不一致的问题: 丢失更新 A,B两个用户读同一数据并进行修改,其中一个用户的修改结果破坏了另一个修改的结果,比如订票系统 脏读 A用户修改了数据,随后B用户又读出该数据,但A用户因为某些原因取消了对数据的修改,数据恢复原值,此时B得到的数据就与数据库内的数据产生了不一致 不可重复读 A用户读取数据,随... 阅读全文
posted @ 2008-11-30 18:38 heart-in-sky 阅读(238) 评论(0) 推荐(0) 编辑
  2008年10月21日
摘要: 日期转化一 为了达到不同的显示效果有时,我们需要对时间进行转化,默认格式为:2007-01-03 14:33:34 ,要转化为其他格式,要用到DateTime.ToString的方法(String, IFormatProvider),如下所示: using System; using System.Globalization; String format="D"; DateTime date=... 阅读全文
posted @ 2008-10-21 16:51 heart-in-sky 阅读(205) 评论(0) 推荐(0) 编辑
  2008年8月15日
摘要: public bool CheckParams(params object[] args) { string[] Lawlesses={"=","'"}; if(Lawlesses==null||Lawlesses.Length0) return false; } else if(arg is ICollection)//如果是一个集合,则检查集... 阅读全文
posted @ 2008-08-15 14:56 heart-in-sky 阅读(956) 评论(0) 推荐(0) 编辑
  2008年8月13日
摘要: http://nchc.dl.sourceforge.net/sourceforge/anthem-dot-net/anthem-1.1.0.zip 阅读全文
posted @ 2008-08-13 10:37 heart-in-sky 阅读(161) 评论(0) 推荐(0) 编辑
  2008年8月12日
摘要: using System; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.ComponentModel; using System.ComponentModel.Design; namespace CustomComponents { /// /// Summary... 阅读全文
posted @ 2008-08-12 16:11 heart-in-sky 阅读(192) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页