博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

2008年9月27日

摘要: 这两天,在研究,怎么实现,.net里面的URL重写与伪静态,在MSDN里面,学习了一下,又在网上搜了一些资料,终于做出来了,给大家分享一下。一,获得Mircosoft URLRewriter.dll:获得Mircosoft URLRewriter.dll可以到http://www.microsoft.com/china/msdn/library/webservices/asp.net/URLRewriting.mspx?mfr=true下载完毕后,导入工程,我这里没有对该工程做任何修改,保留了原来的重写方式,然后直接在VS2005里面生成.dll文件就可以了。二,使用该dll文件:添加引用,搞 阅读全文

posted @ 2008-09-27 21:09 codingsilence 阅读(143) 评论(0) 推荐(0) 编辑

摘要: 中文错误信息:此游标不包括正在修改的表,或该表不能通过此游标更新。 英文错误信息:The cursor does not include the table being modified or the table is not updatable through the cursor. 其原因是由于计算机名和sql server 2005的servername不一致所致。 解决方法: 先执行 select @@servername 查看数据库中的servername 然后执行: sp_dropserver 'old_name' go sp_addserver 'new_ 阅读全文

posted @ 2008-09-27 13:38 codingsilence 阅读(391) 评论(0) 推荐(0) 编辑