NRabbit

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 6 7 8 9 10 11 下一页

2008年5月27日

摘要: 当IIS应用服务器与SQL Server数据服务器在不同机器上时, Transaction发生异常. 花了几天时间,终于也解决了. 共勉之: 1.对MSDTC组件设置: 步骤: 1.控制面板->管理工具->组件服务->计算机->我的电脑->右键->属性 2. 选择MSDTC页, 确认"使用本地协调器" 3.点击下方"安全配置"按钮 4. 勾选: "允许网络访问","允许远程客户端","允许入站"... 阅读全文
posted @ 2008-05-27 09:54 kevin.nrabbit 阅读(238) 评论(0) 推荐(0) 编辑

2008年5月26日

摘要: 摘自:http://www.cnblogs.com/tedzhao/archive/2008/05/26/1206514.html ASP.NET 2.0 Callback 使得ASP.NET Server端控件能够调用服务端的方法而不需要执行一个完整的Postback过程,也就是说使得Server端控件可以很好的支持Ajax。 Callback不同于Postback之处在于向服务器发送请求时... 阅读全文
posted @ 2008-05-26 23:16 kevin.nrabbit 阅读(189) 评论(0) 推荐(0) 编辑

2008年5月15日

摘要: 摘自:http://www.cnblogs.com/Ihaveadream/archive/2008/05/02/1178538.html Cookie有三个属性需要注意一下: 1. Domain 域 2. Path 路径 3. Expires 过期时间 跨域操作需要设置域属性: Response.Cookies("MyCookie").Domain =... 阅读全文
posted @ 2008-05-15 15:30 kevin.nrabbit 阅读(1002) 评论(0) 推荐(0) 编辑

摘要: 代码如下 1 namespace DSKJ.WebUI.WebControls 2 { 3 public class ControlConverter : ControlIDConverter//StringConverter 4 { 5 protected override bool FilterControl(Control control) 6 ... 阅读全文
posted @ 2008-05-15 15:00 kevin.nrabbit 阅读(248) 评论(0) 推荐(0) 编辑

摘要: 令人震惊的照片 链接地址:http://www.bijiebbs.com/dispbbs.asp?boardID=5&ID=1421&page=1 阅读全文
posted @ 2008-05-15 00:47 kevin.nrabbit 阅读(1284) 评论(0) 推荐(0) 编辑

2008年5月8日

摘要: 1.查看 DataProvider生成DataAdapter的类代码,其中有下面三个private成员和一个public属性用做排序 private string orderString ; //正序,根据用户设置的排序顺序 private string reverseOrderString ; //反序,与用户设置的排序顺序相反 ... 阅读全文
posted @ 2008-05-08 23:38 kevin.nrabbit 阅读(181) 评论(0) 推荐(0) 编辑

2008年5月7日

摘要: showModalDialog和showModelessDialog方法打开的页面里面的表单提交和链接都会打开新窗口,以前一直是用框架的方式来解决,其实还有一种更简单的方法,在模态窗口的页面head部分添加下面代码就可以了! 1 2 3 4 5 阅读全文
posted @ 2008-05-07 08:28 kevin.nrabbit 阅读(260) 评论(0) 推荐(0) 编辑

摘要: 在VS2008中将TextBox文本框属性Readonly设为true之后,无法通过代码提交值的问题, 解决办法:在Page_Load事件中加入如下代码: TextBox1.Attributes["Readonly"] = "readonly"; 阅读全文
posted @ 2008-05-07 08:19 kevin.nrabbit 阅读(211) 评论(0) 推荐(0) 编辑

2008年5月2日

摘要: Introduction In the previous article, I illustrated some of the C# 3.0 new language and compiler features. I'll illustrate the rest of the features in this second part. Implicitly Typed Local Va... 阅读全文
posted @ 2008-05-02 11:39 kevin.nrabbit 阅读(202) 评论(0) 推荐(0) 编辑

摘要: Introduction Well, in this article I'll illustrate some of the C# 3.0 new language and compiler features and I'll illustrate the rest of the features in the second part. First of all, let's define all... 阅读全文
posted @ 2008-05-02 11:23 kevin.nrabbit 阅读(249) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 下一页