ASP.NET Developer Center: Provider Toolkit: Custom Site Map Providers in ASP.NET 2.0 リンク: ASP.NET Developer Center: Provider Toolkit: Custom Site Map Providers in ASP.NET 2.0.… Read More
Build an ASP.NET Session Timeout Redirect Control リンク: Build an ASP.NET Session Timeout Redirect Control.… Read More
SiteMap menu with icons リンク: 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
ASP.NET Forums – setfocus to username in control of CreateUserWizard jwadsworthのおかげて、この問題が解決しました。 リンク: ASP.NET Forums – setfocus to username in control of CreateUserWizard.… Read More
Working with WebParts Page, WebPart Zones & WebParts リンク: 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 Development Center: Introducing the ASP.NET 2.0 Web Parts Framework サンプル付き、わかりやすく説明。 リンク: ASP.NET Development Center: Introducing the ASP.NET 2.0 Web Parts Framework.… Read More
ASP.NET程序中常用代码汇总(五) リンク: 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