上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 75 下一页
摘要: //dataset 釋放 public void DataSet_Dispose(DataSet ds) { if (ds != null) { ds.Dispose(); ds = null; } ... 阅读全文
posted @ 2008-11-13 14:37 Nina 阅读(1997) 评论(0) 推荐(0) 编辑
摘要: 1,Response.Redirect("~/login.aspx?URL=" + url) 2,Server.Transfer("~/login.aspx?URL=" + url, false); 阅读全文
posted @ 2008-11-13 14:35 Nina 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 要使用好Ajax.net,就要学会灵活运用Ajax.net所提供的Ajax Control Toolkit。该控件包提供了很多使用效果很炫的控件,有了它你能轻松打造一个Ajax网站。从本章开始,我们一起来学习怎样使用Ajax Cotrol Toolkit中的所有控件。 第一步:创建Ajax Toolkit模板 大家应该有印象,当我们成功安装了Ajax扩展包之后,VS.net的模板中就多了一个A... 阅读全文
posted @ 2008-11-04 11:57 Nina 阅读(328) 评论(1) 推荐(0) 编辑
摘要: --删除卡的记录 delete from ObjTransportCard where CardId=@CardId --删除交易的记录 delete from ObjTransaction where CardId=@CardId 在Sql 2000中,为了成功执行这个存储过程,我需要在每一条语句后面去判断@@ERROR,如果有错,则执行回滚.上例只是我举的一个简单的例子,如果在一个真实大型应用... 阅读全文
posted @ 2008-11-03 14:26 Nina 阅读(378) 评论(0) 推荐(0) 编辑
摘要: Snazzy BordersBased on Nifty Corners By Alessandro Fulcinitihttp://pro.html.it/esempio/nifty/ content 阅读全文
posted @ 2008-10-29 14:28 Nina 阅读(530) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/pointdeng/articles/1171323.html 无标题页 这里放内容 ... 阅读全文
posted @ 2008-10-29 14:12 Nina 阅读(167) 评论(0) 推荐(0) 编辑
摘要: create table randomtable (CustomerItem varchar(100) ) insert randomtable exec(@sql)--proc nameselect * from randomtabledrop table randomtable 阅读全文
posted @ 2008-10-21 09:44 Nina 阅读(198) 评论(0) 推荐(0) 编辑
摘要: VS.NET 2005中实用的默认键 Shift+Alt+Enter: 切换全屏编辑 Ctrl+B,T / Ctrl+K,K: 切换书签开关 Ctrl+B,N / Ctrl+K,N: 移动到下一书签 Ctrl+B,P: 移动到上一书签 Ctrl+B,C: 清除全部标签 Ctrl+I: 渐进式搜索 Ctrl+Shift+I: 反向渐进... 阅读全文
posted @ 2008-10-14 15:11 Nina 阅读(394) 评论(0) 推荐(0) 编辑
摘要: /**//// /// 得到文件目錄的所有子文件 /// string files = ""; public string GetFiles(string dir) { DirectoryInfo dif = new DirectoryInfo(dir); int n = dif... 阅读全文
posted @ 2008-10-07 17:00 Nina 阅读(584) 评论(0) 推荐(0) 编辑
摘要: 網址:http://localhost:1897/News/Press/Content.aspx/123?id=1#toc Request.ApplicationPath / Request.PhysicalPath D:\Projects\Solution\web\News\Press\Content.aspx System.IO.Path.GetDirectoryName(Requ... 阅读全文
posted @ 2008-09-26 08:44 Nina 阅读(740) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 75 下一页