Change Page Localization With Asp:DropDownList?

Mar 24, 2011

I have localized application where user can choose her preferred language in dropdown control. After OnSelectedIndexChanged event there is postback and CurrentThread.CurrentCulture should be set to what user chooses.

Login.aspx.cs
public partial class Login : BasePage
{
protected void LanguageDrop_changed(object sender, EventArgs e)
{
var lang = LanguageDropDown.SelectedValue;
Thread.CurrentThread.CurrentUICulture = new CultureInfo(lang);
Thread.CurrentThread.CurrentCulture = new CultureInfo(lang);
}
}

However, it does not work correct because LanguageDrop_click event fires after InitializeCulture so some default culture is initialized, controls are localized to default language and then CurrentThread.CurrentCulture is set. So user have to refresh page once more to see them in chosen language.

UPDATE: I found partial answer: [URL] He retrieves language dropdown value in InitializeCulture() event from Form collection

View 1 Replies


Similar Messages:

Localization :: Change The Page Language?

Aug 26, 2010

I am new to this forum and want to know how can i change the page language.

For example English -> Hindi..

View 4 Replies

Localization :: Combo Box In A Master Page To Change Web App Language?

Feb 12, 2011

I need to create my first (and simple) .net 4 web application that needs to be viewed in English, French and Italian. I've created and tested a sample web application that works fine with implicit and explicit localization set via web browser language preferences.

Now I'd like to add a simple Combo Box in the master page or in the login page to let the user choose the preferred language and would like the site to change its language based on this. I do not know how to start and to accomplish this task.

View 2 Replies

Localization :: How To Change The Resource File Used By Page Based On Some Value

Jul 22, 2010

I need to be able to change the resource file used by an ASP.Net Page based on some value other than Culture/Language/Region. The purpopse is to simply configure properties on the page based on a city or site name or other criteria. I do not want to change language or culture/region.

View 1 Replies

Localization :: How To Change Current Culture Of Content Page

Nov 29, 2010

i have three master pages and some contents pages in my project.

in content page i have wrote below script:

[Code]....

And i have a language flags in my master page. so i have created image button for language flag to perform on click action. where On click of language flag (polish) i like to change the content (English) of my page as per the selected flag click.

hence i have wrote in master page:

<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="../common/images/pol.gif" AlternateText="Polish" />
And in code behind --- ImageButton1_Click
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("pl-PL")
Thread.CurrentThread.CurrentUICulture = New CultureInfo("pl-PL")
Response.Write(Thread.CurrentThread.CurrentCulture)
Dim geturl As String
geturl = Request.Url.ToString()
Response.Redirect(geturl)

here the geturl is print with "pl-PL" but the page content is printed with English language.

I want to change page content also as per flag seletion.

View 5 Replies

Localization :: Page Title Is Not Changed When The Language Change?

Oct 21, 2010

I'm creating a bilingual website (Arabic and English VS2005),I'm using resource files to store my site strings. The problem is that my page title is not changging when I change the language, my title resource key is:

PageResource1.Title

and I use this code

<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true"
CodeFile="contactus.aspx.cs" Inherits="contactus" meta:resourcekey="PageResource1" Culture="auto" UICulture="auto" %>

to displaye the page title

View 1 Replies

Localization :: Change The Entire Page In Selected Languages By Using Satellite Assemblies?

Jan 11, 2010

how to change the entire page in selected languages by using satellite assemblies .

View 2 Replies

Localization :: Change UI Culture But Resources Doesn't Change Into The Update Panels?

Apr 1, 2011

I have a pesky problem: if I change the UI culture dynamically and then I reload a page, the Resources.resx file selected was changed into the page but not into the Update Panel.

View 1 Replies

Localization :: Want To Change Culture Of The Specific Aspx Page Bases On The Main User's Culture

Nov 23, 2010

I need to change culture of the specific aspx page bases on the main user's culture.I am able to fetch the data that which culture main user have.But some how I am not able to set the same culture for that aspx page.I had written the below code for that.

[Code]....

But that is not working it sets the default culture of the browser.

View 1 Replies

MVC :: ResultGrid On Selection Change Of Dropdownlist On Same Page?

Dec 24, 2010

I've created following View, which contains simple text box and Submit button. On submit button I've simply filtered records having product name as written in textbox. As I'm new to MVC 2, I'm not getting whats wrong with my code (specially with my UserControl)..?

[code]....

View 1 Replies

Localization :: How To Change The Format Of The Amount

Dec 2, 2010

On the server is a form format of the amount in 12:51.How do I change the format in the form of 12.51?

View 4 Replies

Localization :: Webpage Won't Change The Language?

Jul 14, 2010

My page won't change the language could someone have a look at my code and tell me what im doing wrong it always goes to the default language

View 3 Replies

Localization :: Change Nativeculture To Culturename?

May 10, 2010

I Want to change nativeculture to culturename asp.net With CultureInfo in System.Globalization for exmaple i have nativename="English" Now I Want to Change CultureName="en"

View 4 Replies

Localization :: Change The Wording Of The Language?

Apr 8, 2010

how to change the wording of the language?

My idea:

In my text file, labeled according to the selected language.

Examples:

English: How are you?

Germany: Wie geht es Ihnen?

I have a document default.aspx

I have a combobox in which languages English and Germany. English click, print: "How are you?" or Germany, print "Wie geht es Ihnen?"

How do they do ? How to display text on the page default.aspx?

View 6 Replies

Localization :: Change CurrencyGroupSeparator For A Language?

Jan 19, 2010

How is it possible to change the CurrencyGroupSeparator for a special language? It would be nice if i could change it once and the it will work on the entire site.

View 4 Replies

Localization :: Change Date Format For Label

Nov 18, 2010

i am facing a problem to change the date format in label.

i get the date from database with format("yyyy-MM-dd")

[Code]....

however, when it display to the label, it change to different date format because it follow the date format which is set in control panel. how to make the date display in label to a fix format? i want the date format ("yyyy-MM-dd"). the below coding is fail.lbl_approval_approve_date.Text = Format(lbl_approval_approve_date.Text, "yyyy-MM-dd") the date will display in excel which i generate it to report viewer.

View 3 Replies

Localization :: Change Image Paths Programmatically?

Sep 16, 2010

I am working on a localization project, some of the localized text are in graphics, some of the example graphics paths:

/en/images
/es/images
/fr/images

My web forms use <asp:image> controls and <img> tags (runat = sever) to point to graphics in /en/images. I need to a function to loop through all image control and point them to different paths based on the locale set at runt time. Which event should I override and how do I write it?

All my web pages inherit from a base page, I don't know if that makes differences.

View 5 Replies

Localization :: Change Language Of Site By Using Session?

Jul 13, 2010

I have no knowledge about sessions but I realize that using sessions in multi-language sites are very useful. How can I implement language selection by using sessions and sql database?

View 3 Replies

Localization :: Change Value In Resource.resx On Runtime?

Mar 17, 2010

I am make website and publish it, i am used different language by Resource.resx and Resource.Ar.resx.

when publish website i see resources files convert to .dll

App_GlobalResources.dll
App_GlobalResources.compiled
AR/App_GlobalResources.resources.dll

i want to make page in administrator to can change value for any key in resources.

how i can search key by value.

then i want to put textbox to change value.

ex:

Key : MSG Value : Message.

i want to change 'Message' Value to 'welcome to visit us' throught website is running.

View 3 Replies

Localization :: Change App To Support Japanese Characters?

May 27, 2010

We have some software that works with a sql database, our customers want to use japanese characters. When they try and use it with our softare and save the characters through a form, the characters get corrupted. They have said that if we change the charater encoding in our database that we can save jap characters. What im workdering is if we do this will it affect the current data and do our forms have to be rewritten to handle these characters?

View 4 Replies

Localization :: Change Web.sitemap.resx File At Runtime?

Apr 22, 2010

I have a CMS that allows an administrator to add/create pages for his website.

When a page is created a SiteMapNode is added to the web.sitemap file with the an url , title and resourceKey.

Now I wish to add a resourcekey to the appropriate web.sitemap.resx file(located in App_GlobalResources).

I have tried many different ways :

- using XMLDocument load/save => says I don't have access to write to that resource file

- ResourceReader says the source stream is not valid.

View 4 Replies

Localization :: Change Gridview Date Format To Arabic?

Apr 14, 2010

I have a gridview with date column, and my datastring format is: [Code]....

I need to display this in arabic encoding for my arabic pages.

View 2 Replies

Localization :: How To Change Button Text In Multi Language Website

Aug 19, 2010

i developing multi language website using Master pages Page_Load i set the Text property of Button Control from Resource file

like this

Button1.Text = GetLocalResourceObject("Button1")
then in the button click event i cnage the text of the Button control
Button1.Text = GetLocalResourceObject("Button1_new")
but the text doesn't change and no error messgae
what is the problem how to solve this

View 8 Replies

Localization :: System.Globalization.CultureInfo() Change The Month Of Date?

Jan 25, 2011

I am Using javascript calander to select date into textbox. I have Set the Date Format MM-DD-YYYY . Now when i convert this text string to DateTime then my Actual month of date is changed.

IFormatProvider theCultureInfo = new System.Globalization.CultureInfo("en-GB", true);
DateTime date = DateTime.ParseExact(txtDate.Text, "mm-dd-yyyy", theCultureInfo);

For example If i Put in Text Box 2-12-2011 (12 Feb 2011) Then After Converting It will 12-01-2011 00:02:00 .

View 2 Replies

Localization :: Change Culture For All Pages (in Button Commant Event)?

Mar 3, 2010

I've used 3 languages on my site and I've also put 3 Image Buttons. The language image button that you click will allow that language to be seen on the site. What should I write for that command btn (btn1_command event)

but when I cllick language button, culture should change for all pages for only current user.other users can use different culture.how can I

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved