会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
.net BI
共同學習,共同進步
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
29
30
31
32
33
34
35
36
37
···
75
下一页
2008年11月13日
dataset 用完后马上释放
摘要: //dataset 釋放 public void DataSet_Dispose(DataSet ds) { if (ds != null) { ds.Dispose(); ds = null; } ...
阅读全文
posted @ 2008-11-13 14:37 Nina
阅读(2001)
评论(0)
推荐(0)
编辑
跳转页面后,不需继续执行后面所有的代码包括事件
摘要: 1,Response.Redirect("~/login.aspx?URL=" + url) 2,Server.Transfer("~/login.aspx?URL=" + url, false);
阅读全文
posted @ 2008-11-13 14:35 Nina
阅读(256)
评论(0)
推荐(0)
编辑
2008年11月4日
轻松掌握Ajax.net系列教程二:部署Ajax Control Toolkit
摘要: 要使用好Ajax.net,就要学会灵活运用Ajax.net所提供的Ajax Control Toolkit。该控件包提供了很多使用效果很炫的控件,有了它你能轻松打造一个Ajax网站。从本章开始,我们一起来学习怎样使用Ajax Cotrol Toolkit中的所有控件。 第一步:创建Ajax Toolkit模板 大家应该有印象,当我们成功安装了Ajax扩展包之后,VS.net的模板中就多了一个A...
阅读全文
posted @ 2008-11-04 11:57 Nina
阅读(330)
评论(1)
推荐(0)
编辑
2008年11月3日
sql 2005 try catch
摘要: --删除卡的记录 delete from ObjTransportCard where CardId=@CardId --删除交易的记录 delete from ObjTransaction where CardId=@CardId 在Sql 2000中,为了成功执行这个存储过程,我需要在每一条语句后面去判断@@ERROR,如果有错,则执行回滚.上例只是我举的一个简单的例子,如果在一个真实大型应用...
阅读全文
posted @ 2008-11-03 14:26 Nina
阅读(379)
评论(0)
推荐(0)
编辑
2008年10月29日
纯CSS圆角边框的一段代码
摘要: Snazzy BordersBased on Nifty Corners By Alessandro Fulcinitihttp://pro.html.it/esempio/nifty/ content
阅读全文
posted @ 2008-10-29 14:28 Nina
阅读(533)
评论(0)
推荐(0)
编辑
DIV+CSS实现圆角 --zt
摘要: http://www.cnblogs.com/pointdeng/articles/1171323.html 无标题页 这里放内容 ...
阅读全文
posted @ 2008-10-29 14:12 Nina
阅读(169)
评论(0)
推荐(0)
编辑
2008年10月21日
把存儲過程的數據寫入table
摘要: create table randomtable (CustomerItem varchar(100) ) insert randomtable exec(@sql)--proc nameselect * from randomtabledrop table randomtable
阅读全文
posted @ 2008-10-21 09:44 Nina
阅读(199)
评论(0)
推荐(0)
编辑
2008年10月14日
VS.NET 2005中实用的默认键
摘要: 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
阅读(396)
评论(0)
推荐(0)
编辑
2008年10月7日
.net 得到知道文件夾的所有文件和刪除指定文件夾
摘要: /**//// /// 得到文件目錄的所有子文件 /// string files = ""; public string GetFiles(string dir) { DirectoryInfo dif = new DirectoryInfo(dir); int n = dif...
阅读全文
posted @ 2008-10-07 17:00 Nina
阅读(586)
评论(0)
推荐(0)
编辑
2008年9月26日
ASP.NET 取得 Request URL 的各個部分
摘要: 網址: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
阅读(742)
评论(0)
推荐(0)
编辑
上一页
1
···
29
30
31
32
33
34
35
36
37
···
75
下一页
公告