Microsoft MSDN: How to: Localize Site-Map Data Actually it is the same as you create a Global resource file under App_GlobalResources folder, and put the site map node text content to the resource file. In site map file: set:  <siteMap enableLocalization=”true”> and change:     <siteMapNode url=”~/Default.aspx” title=”$resources:SiteText,StrHome” description=”” roles=”*” >    </siteMapNode> In Global resource file, [Read More ...]

Looking for Microsoft ASP.NET 2.0 Membership Data Structure ( Definition ) ? Firstly, please check MSDN: Microsoft ASP.NET 2.0 Providers: Introduction (There is also another edition: ASP.NET 2.0 Provider Model: Introduction to the Provider Model) The aspnet_Users table Column Name    Column Type    Description————————————————–ApplicationId    uniqueidentifier    Application IDUserId    uniqueidentifier    User IDUserName    nvarchar(256)    User nameLoweredUserName    nvarchar(256)    User name [Read More ...]

Microsoft provides also a role article: How to: Sample Role-Provider Implementation

There is a article about Customer Membership Provider, However, I guess you want to your own user table other than using Microsoft ASPNET user table, so you will feel the previous article is not enough for your requirement. Yes, you must create your own custom Membership User class: Please check here (How to: Implement a [Read More ...]

You can not create different resource files for a Web.Sitemap file just like for other web form files if you use site map for you asp.net menu control. Microsoft Online Community Support Zhao Ji Ma has provided solution: Although you can localize the Title and Description properties of the SiteMapNode, the Url property cannot be [Read More ...]

1: Walkthrough: Using Resources for Localization with ASP.NET (including Implicit Localization and Explicit Localization); 2: Locating and Using Resources for a Specific Culture 3: ASP.NET Videos : [How Do I:] Create a Multi-Lingual Site with Localization? 4: Applying localization From MasterPages (Using Cookie, we used this one and worked well ) 5: Creating Dynamic Web [Read More ...]

There are 3 parts about these steps:I: Setting IIS 7 for .NET 4.0 in Windows 7 (1)II: Setting IIS 7 for .NET 4.0 in Windows 7 (2)III: Setting IIS 7 for .NET 4.0 in Windows 7 (3) Now let us add virtual directory for new web site: 1: You can add multiple web sites,  or [Read More ...]

There are 3 parts about these steps:I: Setting IIS 7 for .NET 4.0 in Windows 7 (1)II: Setting IIS 7 for .NET 4.0 in Windows 7 (2)III: Setting IIS 7 for .NET 4.0 in Windows 7 (3) After IIS installed and some related setting. now it is the time to add a website on IIS [Read More ...]

In Windows 7, there is the IIS ( Internet Information Services ) version is 7. The following is the steps which we setup an IIS 7 Web server in Windows 7 Home Premium: There are 3 parts about these steps:I: Setting IIS 7 for .NET 4.0 in Windows 7 (1)II: Setting IIS 7 for .NET [Read More ...]

Here a good sample from Author: Steve Lautenschlager Input: http://localhost:96/Cambia3/Temp/Test.aspx?q=item#fragment Some HttpRequest path and URL properties:Request.ApplicationPath:    /Cambia3Request.CurrentExecutionFilePath:    /Cambia3/Temp/Test.aspxRequest.FilePath:    /Cambia3/Temp/Test.aspxRequest.Path:    /Cambia3/Temp/Test.aspxRequest.PathInfo:    Request.PhysicalApplicationPath:    D:\Inetpub\wwwroot\CambiaWeb\Cambia3\Request.QueryString:    /Cambia3/Temp/Test.aspx?query=argRequest.Url.AbsolutePath:    /Cambia3/Temp/Test.aspxRequest.Url.AbsoluteUri:    http://localhost:96/Cambia3/Temp/Test.aspx?query=argRequest.Url.Fragment:    Request.Url.Host:    localhostRequest.Url.Authority:    localhost:96Request.Url.LocalPath:    /Cambia3/Temp/Test.aspxRequest.Url.PathAndQuery:    /Cambia3/Temp/Test.aspx?query=argRequest.Url.Port:    96Request.Url.Query:    ?query=argRequest.Url.Scheme:    httpRequest.Url.Segments:    /Cambia3/Temp/Test.aspx

© 2013 CodeEase.com Suffusion theme by Sayontan Sinha