Dear Sir,
I have a small asp,net project (aspx) . At present it is showing in english but i want to convert each page in multiple language by select language from dropdown menu. like if select English all content should show in english if i select french page content should show in French
please help me
Refer
sir, May I have any demo exaple file.
please give me link to download the example
I lready gave you link with demo code
Use ASP.NET localization with .resx resource files: create Page.aspx.resx (English) and Page.aspx.fr.resx (French), set UICulture="auto" Culture="auto" in the page directive, store the selected language from the dropdown in Session (e.g., "en" or "fr"), set Thread.CurrentThread.CurrentUICulture and CurrentCulture in Global.asax (Application_BeginRequest), then reload the page so the correct language content loads automatically from the corresponding resource file.
Ex: https://www.aspsnippets.com/questions/876678/How-fnf-to-show-aspx-project-in-multiple-language/
© COPYRIGHT 2026 ASPSnippets.com ALL RIGHTS RESERVED.