SubVersion安装和使用系列文章之一:下载安装篇
摘要:本篇用图解的形式介绍了如何安装和配置Subversion。
阅读全文
列出和选择Theme模版的代码
摘要:1using System.IO; 2 3public partial class BookWithThemes : System.Web.UI.MasterPage 4{ 5 /**//// 6 /// Upon loading,populate theme list based on themes in App_Themes folder 7 /// 8 protecte...
阅读全文
调试ASP.NET Ajax应用程序的方法
摘要:1,官方文档http://ajax.asp.net/docs/overview/ASPNETAJAXDebuggingAndTracingOverview.aspx2,远程调试将Visual Studio的调试器Attach到远程机器上的IIS进程上远程调试3,修改ScriptManager的SupportsPartialRendering属性为false。 4,查看Windows事件。
阅读全文
VS2005解决方案的目录结构
摘要:在本地文件系统:C:\MyApp \MyApp.sln \Source \MyAppWeb \ClassLibrary1在源代码管理系统: /Main /Build /Docs /Source /MyApp MyApp.sln /Source /MyAppWeb /ClassLibrary1 /UnitTests /MyAppWebTests ...
阅读全文
高危ANI 0day安全漏洞临时解决方案
摘要:Users who install this patch should note:· This patch is a temporary fix and should be removed before the official Microsoft patch is installed.· It is recommended that users test this patch tho...
阅读全文
抄一个汉字转汉语拼音缩写的存储过程
摘要:If Exists (Select name From sysobjects Where name = 'HZToPY' And type = 'FN')Drop Function HZToPYGOCreate Function HZToPY(@HZ VarChar(50))Returns VarChar(50)AsBegin Declare @PY VarChar(50),@LenHZ int...
阅读全文