08 2009 档案

视图View
摘要:视图:1. 标准视图:标准视图的结果集不是永久地存储在数据库中。查询每次引用视图时,Microsoft® SQL Server 会动态地将生成视图结果集所需的逻辑合并到从 div:eq(0) div:eq(3) table:eq(2) tbody:eq(0) tr:eq(0) td:eq(0) div:eq(0) #content:eq(0)" anchort... 阅读全文

posted @ 2009-08-31 18:03 博览潇湘

行带嵌入参数的sql——sp_executesql
摘要:通常执行sql语句,大家用的都是exec,exec功能强大,但不支持嵌入参数,sp_executesql解决了这个问题。语法 sp_executesql [@stmt =] stmt[{, [@params =] N'@parameter_name data_type [,...n]' }{, [@param1 =] 'value1' [,...n] }]参数[@stmt =] stmt[代码]/... 阅读全文

posted @ 2009-08-30 22:08 博览潇湘 阅读(312) 评论(0) 推荐(0)

SQL SERVER 2005 进行XML查询
摘要:SQL SERVER 2005 进行XML查询 阅读全文

posted @ 2009-08-30 12:22 博览潇湘 阅读(2156) 评论(1) 推荐(0)

SQL CLR 用户自定义类型
摘要:SQL CLR 用户自定义类型 阅读全文

posted @ 2009-08-30 11:45 博览潇湘 阅读(403) 评论(0) 推荐(0)

常用SQL语句
摘要:1. 读取文本文件到数据库中select xml_data from openrowset(Bulk 'D:\a.txt',single_nlob) as F(xml_data)update customerdata set txt_data=(select data from openrowset(bulk 'D:\words.txt',single_clob) as f(data))http:... 阅读全文

posted @ 2009-08-29 15:26 博览潇湘

Knowledge gained after reading inside SqlServer2005-TSQL programming
摘要:First, you should know the difference among the DateAdd,DateDiff,DatePart functions.Second, you should know the key words of SQL SERVER new edition. Such as : DateName(). You can get theday's name of ... 阅读全文

posted @ 2009-08-28 23:09 博览潇湘

Upload Large Files in ASP.NET Using HttpModule
摘要:Upload Large Files in ASP.NET Using HttpModule 阅读全文

posted @ 2009-08-28 16:07 博览潇湘 阅读(547) 评论(0) 推荐(1)

ASP.Net 2.0: Export GridView to Excel
摘要:ASP.Net 2.0: Export GridView to Excel 阅读全文

posted @ 2009-08-28 10:24 博览潇湘 阅读(310) 评论(0) 推荐(0)

给执行代码加 执行权限 角色管理[System.Security.Permission]
摘要:更多详细:http://weblogs.asp.net/scottgu/archive/2005/11/14/430598.aspx[代码] 阅读全文

posted @ 2009-08-23 21:39 博览潇湘 阅读(317) 评论(0) 推荐(0)

Asynchronous Pages in ASP.NET 2.0
摘要:Asynchronous Pages in ASP.NET 2.0 阅读全文

posted @ 2009-08-23 12:41 博览潇湘 阅读(699) 评论(1) 推荐(2)

Cross-Page WebPart Connections with ASP.NET 2.0
摘要:请看这篇文章:http://www.nikhilk.net/CrossPageConnections.aspx 阅读全文

posted @ 2009-08-22 21:18 博览潇湘 阅读(176) 评论(0) 推荐(0)

动态改变Style【例如动态改变Master Page,改变Butonn Text】
摘要:更多了解,可以访问这里。通常我们都在Page_Preinit 事件中动态改变MasterPageFile的值.[代码]但是我们可以以声明的方式实现同样功能[代码]同样[代码] 阅读全文

posted @ 2009-08-22 21:11 博览潇湘 阅读(299) 评论(0) 推荐(0)

解密_PreviousPage的值
摘要:[代码] 阅读全文

posted @ 2009-08-22 20:28 博览潇湘

ASP.NET 性能测试
摘要:来自:http://weblogs.asp.net/scottgu/archive/2003/02/17/2551.aspxThomas Marquardt, one of our developers on ASP.NET, recently published an article on MSDN about ASP.NET performance monitoring. Along with... 阅读全文

posted @ 2009-08-22 10:51 博览潇湘

HttpWebRequest[post/get]
摘要:Post[代码] 阅读全文

posted @ 2009-08-22 10:37 博览潇湘

Com 和.NET
摘要:1.元数据。COM中,所有信息都保存在类型库中,不能扩展。而.NET中,是用元数据来描述的, 可以利用定制属性方式进行扩展。2. 内存释放Com中,IUnknown接口是每个COM对象都要实现的接口,它提供3个方法,其中2个与引用数有关,如果需要另外一个接口指针,客户程序必须调用方法AddRef(),这个方法会递增,Rlease()方法会递减,如果引用数为0,则 对象销毁。3.接口(定制接口,分派... 阅读全文

posted @ 2009-08-11 20:56 博览潇湘

导航