摘要:
declare @i intset @i=1while @i<=1000begininsert into dbo.T_Uservalues('aaaa','ddddd')set @i=@i+1end 阅读全文
随笔档案-2012年06月
BI学习
2012-06-14 19:28 by floweriness, 132 阅读, 收藏, 编辑
摘要:
http://blog.csdn.net/wjw31607618/article/details/6080986http://blog.csdn.net/wangjh100/article/details/5731579 阅读全文
window.location & response.redire
2012-06-14 19:27 by floweriness, 160 阅读, 收藏, 编辑
摘要:
一个是服務器端代碼,一個是客戶端代碼。也就是response.redirect()在服務器端就跳轉了。不會執行後面的代碼。而response.write()是將内容輸出到客戶端,即整個頁面所有内容輸出后客戶端瀏覽器解析該頁面遇到window.location.hef解析后才跳转 阅读全文
log4的使用
2012-06-14 19:26 by floweriness, 203 阅读, 收藏, 编辑
摘要:
一:下载dll,添加引用。二:修改webconfig文件三:添加log4net.config文件<?xml version="1.0" encoding="utf-8" ?><configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net-net-1.0" /> </configSecti 阅读全文
路径
2012-06-14 19:26 by floweriness, 120 阅读, 收藏, 编辑
摘要:
(1)、~"~"代表Web应用的虚拟根目录; 相对的 虚拟路径。(2)、~/则该路径为相对于应用程序根目录的相对虚拟路径;使虚拟路径成为相对路径将使该路径与应用程序无关。(3)、~\同上(4)、/"/"代表Web应用的跟目录,和物理路径的相对表示。也就是 绝对的虚拟路径(5)、./"./" 代表当前目录(6)、../上一级目录(7)、\这个和 “/”一样(8)、.\和 “./” 一样(9)、无当前目录 阅读全文
sql server 2008 无法打开物理文件 操作系统错误5:"5(拒绝访问)" 错误:5120
2012-06-14 19:25 by floweriness, 373 阅读, 收藏, 编辑
摘要:
如果是win7的话,以管理员的身份运行SeverManagement Studio就可以了 阅读全文
学习mvc笔记1
2012-06-14 19:25 by floweriness, 84 阅读, 收藏, 编辑
摘要:
http://www.cnblogs.com/zhangziqiu/archive/2009/02/27/ASPNET-MVC-1.html 阅读全文
linq 学习地址
2012-06-14 19:25 by floweriness, 146 阅读, 收藏, 编辑
摘要:
http://blog.csdn.net/gentle_wolf/article/details/2588615 阅读全文
wcf 例子
2012-06-14 19:24 by floweriness, 165 阅读, 收藏, 编辑
摘要:
开发环境是vs2005 (需要安装对wcf和wpf的扩展支持)。1建立控制台应用程序作为服务端。///这是接口 [ServiceContract(Namespace = "http://Microsoft.ServiceModel.Samples")] public interface ICalculator { [OperationContract] double Add(double n1, double n2); [OperationContract] double Subtract(double n1, double n2); [OperationContract] 阅读全文