Loading

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 39 下一页
摘要: Custom Authentication provider by implementing IHttpModule, IPrincipal and IIdentityhttp://www.codeproject.com/KB/web-security/AspNetCustomAuth.aspxAsp.Net: Authentication based on HTTP Basic protocol. HttpModule.http://blogs.x2line.com/al/articles/146.aspxImplementing Intercepting Filter in ASP.NET 阅读全文
posted @ 2011-05-13 20:01 .net's 阅读(744) 评论(0) 推荐(0) 编辑
摘要: The 'And' operator evaluate both side, where 'AndAlso' only evaluate the right side if the left side is true. An example:If mystring IsNot Nothing And mystring.Contains("Foo") Then ' bla blaEnd IfThis throws an exception if mystring = NothingIf mystring IsNot Nothing An 阅读全文
posted @ 2011-04-10 10:04 .net's 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 调试工具:Msvsmon.exe 工具位置:Install path\Microsoft Visual Studio 8\Common7\IDE\Remote Debugger\x86 参考: Remote IIS Debugging : Debug your ASP.NET Application which is hosted on "Remote IIS Server" 阅读全文
posted @ 2011-03-19 18:23 .net's 阅读(728) 评论(0) 推荐(0) 编辑
摘要: 本周在客户现场,在hp的品牌机上重装windows 2003系统时,碰到网卡驱动安装的问题。在网上找了好久也没找到。用驱动精灵(带万能网卡)的也无济于事。 后来在主机上看到HP Compaq dx7408 Microtower PC的机型,在google搜索了下,转到HP官网。找到对应的驱动,安装,一切顺利。 总结,对于品牌机,安装驱动的时候,直接到官网上下载对应的驱动程序即可。 对于组装机,一... 阅读全文
posted @ 2011-03-18 11:36 .net's 阅读(499) 评论(0) 推荐(0) 编辑
摘要: IntroductionBlogEngine.NET is an open source .NET blogging project that was born out of desire for a better blog platform. A blog platform with less complexity, easy customization, and one that takes advantage of the latest .NET features.BlogEngine.NET was designed using the current .NET framework a 阅读全文
posted @ 2011-03-13 13:41 .net's 阅读(736) 评论(0) 推荐(0) 编辑
摘要: 本文介绍如何挂载已经存在win 7 vhd文件的windows启动菜单项。1,用windows 7安装光盘启动系统。2,启动到如下界面3,按Shift+F10进入命令行窗口4,在命令行中,输入X:\Sources>bcdedit /copy {current} /d "My New VHD Option"或者X:\Sources>bcdedit /copy {default} /d "My New VHD Option"其中,{default}或{current}启动列表中某个启动项的标识符(查看启动项列表命令:bcdedit /v)。Thi 阅读全文
posted @ 2011-03-12 20:43 .net's 阅读(1727) 评论(0) 推荐(0) 编辑
摘要: <style> .ui-autocomplete { max-height: 100px; overflow-y: auto; /* prevent horizontal scrollbar */ overflow-x: hidden; /* add padding to account for vertical scrollbar */ padding-right: 20px; } /* IE 6 doesn't support max-height * we use height instead, but this forces the menu to always b 阅读全文
posted @ 2011-03-11 19:11 .net's 阅读(896) 评论(0) 推荐(1) 编辑
摘要: ALTER PROCEDURE [dbo].[aspnet_Membership_FindUsersByEmail] @ApplicationName nvarchar(256), @EmailToMatch nvarchar(256), @PageIndex int, @PageSize intASBEGIN DECLARE @ApplicationId uniqueidentifier SEL... 阅读全文
posted @ 2011-03-11 17:03 .net's 阅读(398) 评论(0) 推荐(0) 编辑
摘要: I have received call from my DBA friend who read my articleSQL SERVER – 2005 – Introduction to Partitioning. He suggested that I should write simple tutorial about how to horizontal partition database table. Here is simple tutorial which explains how a table can be partitioned. Please read my articl 阅读全文
posted @ 2011-03-10 17:09 .net's 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 【鹏城万里】 发表于www.sqlstudy.comSQL Server 2005 分区表实践——建立分区表(partition table)问题:有一个订单表 Orders,要转换成分区表,以订单日期 OrderDate 为分区列, 目前含有订单日期为 1996-07-04 ~ 1998-05-06 的数据。可以在 SQL Server 2000 Northwind 数据库中找到 Orders 表,下面是简化了的表结构:create table dbo.Orders( OrderID int not null ,CustomerID varchar(10) not null ,Employe 阅读全文
posted @ 2011-03-10 16:58 .net's 阅读(581) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 39 下一页