无名

长风破浪会有时,直挂云帆济沧海!

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

05 2009 档案

摘要:You have a Web site that is hosted on Internet Information Services (IIS) 7.0. When you visit the Web site in a Web browser, you may receive an error message that resembles one of the following: Error... 阅读全文
posted @ 2009-05-31 15:16 无名 阅读(1895) 评论(0) 推荐(0)

摘要:ASP.NET works in conjunction with IIS, the .NET Framework, and the underlyingsecurity services provided by the operating system, to provide a range of authenticationand authorization mechanisms. These... 阅读全文
posted @ 2009-05-31 10:49 无名 阅读(429) 评论(0) 推荐(0)

摘要:Exchange Web Services and VS 2008 (Missing ExchangeServiceBinding) After breaking my head for the day long for the missing proxy class ExchangeServiceBinding after adding the Exchange Web Services ref... 阅读全文
posted @ 2009-05-25 19:39 无名 阅读(441) 评论(0) 推荐(0)

摘要:更新:2007 年 11 月 在 ASP.NET 网页中,可以设置两个区域性值,即 Culture 和 UICulture 属性。Culture 值确定与区域性相关的函数的结果,如日期、数字和货币格式等。UICulture 值确定为页加载哪些资源。 说明: Culture 和 UICulture 属性是使用标识语... 阅读全文
posted @ 2009-05-07 17:00 无名 阅读(449) 评论(0) 推荐(0)

摘要:昨天写的脚本在获取鼠标位置的时候有些问题。在IE中始终当有滚动条的时候,发现document.body.scrollTop并没有起到作用。 后来在google中搜索到一篇文章Mouse Cursor Position,详细介绍了浏览器鼠标定位的问题。各个浏览器对鼠标定位的标准不一样,就连不通版本的ie对定位支持都不一样。 document.body.scrollLeft,document.bod... 阅读全文
posted @ 2009-05-07 16:13 无名 阅读(4424) 评论(1) 推荐(1)

摘要:在很多的资料中都描述说SQLSERVER的存储过程较普通的SQL语句有以下优点: 1. 存储过程只在创造时进行编译即可,以后每次执行存储过程都不需再重新编译,而我们通常使用的SQL语句每执行一次就编译一次,所以使用存储过程可提高数据库执行速度。 2. 经常会遇到复杂的业务逻辑和对数据库的操作,这个时候就会用SP来封装数据库操作。当对数据库进行复杂操作时(如对多个表进行 ... 阅读全文
posted @ 2009-05-06 20:59 无名 阅读(8071) 评论(2) 推荐(2)