02 2012 档案

摘要:Could not load file or assembly 'System.Web.Extensions, Version=1.0.61231.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. 系统找不到指定的文件 解决方案一: 1、如果你的程序运行在你能控制的服务器上,那么安... 阅读全文
posted @ 2012-02-25 15:42 叮/当 阅读(526) 评论(0) 推荐(0)
摘要:SqlConnection con = new SqlConnection("server=.;database=myDB;uid=sa;pwd=password;") 改为: SqlConnection con = new SqlConnection("server=.;database=myDB;uid=sa;pwd=password;Connect Timeout=500") ... 阅读全文
posted @ 2012-02-24 17:44 叮/当 阅读(3221) 评论(0) 推荐(0)
摘要:--要先启用高级选项配置 EXEC sp_configure 'show advanced options', 1; RECONFIGURE; --再打开'xp_cmdshell' EXEC sp_configure 'xp_cmdshell', 1; RECONFIGURE; EXEC master..xp_cmdshell 'bcp "dC.dbo.C_ListTab... 阅读全文
posted @ 2012-02-08 13:40 叮/当 阅读(262) 评论(0) 推荐(0)
摘要:HTTP状态代码 以下提供了 HTTP 状态代码的完整列表。 1xx(临时响应) 用于表示临时响应并需要请求者执行操作才能继续的状态代码。 100(继续) 请求者应当继续提出请求。服务器返回此代码则意味着,服务器已收到了请求的第一部分,现正在等待接收其余部分。 101(切换协议) 请求者已要求服务器切换协议,服务器已确认并准备进行切换。 2xx(成功) 用于表示... 阅读全文
posted @ 2012-02-05 11:09 叮/当 阅读(185) 评论(0) 推荐(0)