リンク: SiteMap menu with icons. While binding a Menu (or TreeView: everything in this article applies to TreeView as well) to a SiteMapDataSource is very easy, it can prove challenging to find how to extend the site map with custom properties and use these extended properties in a Menu. This sample shows how to add… Read More


リンク: Working with WebParts Page, WebPart Zones & WebParts – 123aspx.com ASP.NET Resource Directory. Source Code’s Included リンク: Building WebParts in ASP .Net 2.0. Source Code’s included リンク: Anonymous Personalization Trick in Web Parts – The Code Project – ASP.NET. My favorite feature of ASP.NET 2.0 is Web Parts. But the anonymous users in ASP.NET… Read More


リンク: ASP.NET程序中常用代码汇总(五)  – dotnet.csdn.net 团队blog (测试). 41.判断是否为数字 /**//// /// 名称:IsNumberic /// 功能:判断输入的是否是数字 /// 参数:string oText:源文本 /// 返回值: bool true:是 false:否 ///   public bool IsNumberic(string oText) {   try   {    int var1=Convert.ToInt32 (oText);    return true;   }   catch   {    return false;   } } 获得字符串实际长度(包括中文字符) //获得字符串oString的实际长度 public int StringLength(string oString) {… Read More