Changing Culture When Switching View?
Jan 12, 2010
I am working on a website web site where each user has a culture setting to allow control of resources displayed. The main page has two views, one the log on screen, the second the main menu.
When first loaded the page displays with the culture settings of the previous user (if any). If I then log on as a user with a different culture setting the view changes to the main menu without changing the culture. Go to another page and the user's correct culture settings are picked up, go back to the main menu, uses the correct culture etc.
This is logical but is there a way (without redesigning the site to have a separate log in page and main menu) to reset the culture to the new user's when switching view?
View 1 Replies
Similar Messages:
Aug 5, 2010
I have a very simple bilingual site with a link at the bottom that will allow users to switch between the two languages (english/french). the the web.config I have the following line:
<globalization culture="auto" uiCulture="auto" />
This allows for whatever the users browser culture is to be the default lanauge but I'd still like the ablility for them to click a bottom button to toggle. whats the best what to go about doing this?
View 5 Replies
Jul 9, 2010
i'm trying to set my website's culture programmatically, so when a user clicks a button they can change the text on the page from english to spanish. here's my code:
protected void btnChangeLanguage(object sender, EventArgs e)
{
Thread.CurrentThread.CurrentCulture = new CultureInfo("es");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("es);
}
<asp:Label ID="lblDisplay" runat="server" meta:ResourceKey="lblDisplay" />
<asp:Button ID="btnChangeLanguage" runat="server" Text="Change Language"
OnClick="btnChangeLanguage_Click" />
i have a Default.aspx.resx file with a key/value of: lblDisplay.text/English and a Default.aspx.es.resx file with a key/value of: lblDisplay.text/Espanol. i can't get my Label's text to change from "English" to "Spanish". anyone see what i'm doing wrong?
View 1 Replies
Aug 17, 2010
I'm using the following msdn article to use different languages in my web application:
http://msdn.microsoft.com/en-us/library/fw69ke6f(v=VS.80).aspx
I'm following the instructions step by step in VS 2010, and it creates the resource files exactly how it's supposed to. However, when I run the program it just doesn't apply it. I don't see the different values from the resource file.
If I leave my resource file name as sample.aspx.resx, it works. But when I change it to sample.aspx.en-us.resx, it doesn't work. I'm supplying culture from the aspx page's Culter and UICulture properties. I'm being very careful in choosing the correct file name, as that could be the issue, but it just doesn't work. I also tried changing the culture in the backend code this way:
Protected
Overrides
Sub InitializeCulture() [code]....
It still doesn't work.
View 2 Replies
Jul 1, 2010
i'm trying to change the ImageButton on my site using resx files. i tried assigning my ImageButton with meta:ResourceKey="imgBtnSubmit". then in my resx file, i added imgBtnSubmit.ImageUrl and assigned it the url to my new ImageButton. this didn't work for me. could someone tell me if i'm doing something wrong or if there is some other way i could do this?
View 3 Replies
Jan 21, 2010
I have a strange problem with ASP.NET. Several sites on my web server run the exact same application. The application has a page that contains a Tab Container from the Ajax Control Toolkit which in itself contains a Calendar control.
If I set my culture in the web.config to be:
<globalization culture="en-GB" uiCulture="en-GB" />
Then everything works fine. However, by changing this to:
<globalization culture="en-US" uiCulture="en-US" />
When attempting to load the page I get an out of memory exception and w3wp.exe seems to use all available memory.
View 1 Replies
Mar 17, 2011
I have a web application that tracks financial data. I would like to have the option where a user can edit their currency via dropdown. The different currency types will be held in a database and a user can then select which currency they wish to use. The easiest way I can see doing this would be to check what the currency value is and dynamically change the culture to match the currency, thus I could continue to use the string str = String.Format("{0:C}", revenue);format. I am open to other suggestions but this just seemed the most logical to me.
View 2 Replies
Jul 15, 2010
I'm trying to change the value of the language and culture values via a database entry and then appending the culture to the returned value. IE: "en" is in the database, I add "-CA" via VB code.When I hardcode the values, it does work no problem. However, appding the "-CA" makes it crash with the following error message:
[Code]....
Now, I'm retrieving the language value from a database and, since the information is used all over the web site, I cannot really change the data within the database.The following code is posted in the Default.aspx page, called by the master page.The function "siteSetLanguage" retrieves from the database the base language (EN/FR) and returns the value. Null values are checked for and if a null value is returned from the database, it defaults to EN.[Code]....
I do want to force UICulture to english as everything in the databases and external files are stored through the english canadian regional method. However, I've been trying to use .resx files using the above method, but to no avail.Needless to say, my language files don't seem to work no matter what I do.
View 2 Replies
Dec 10, 2010
i designed an export to excel page that uses the following code
the data is displayed in grid view and the date format is displayed as M/d/yyyy
so i added the culture en-GB to page directive to display the date as d/M/yyyy
the date now displays correctly d/M/yyyy, and the utf-8 also display correctly in gridview.
however once i export to excel the utf-8 appears scrambled
when ever i remove the culture from page directives, names display correctly, however i face again the M/d/yyyy issue.
My question is: is there a way to display date as d/M/yyyy and at the same time reading correct utf-8
View 1 Replies
Jul 14, 2010
I am working on an ASP.net web application, the application need to display text in English, Chinese and Japanese based on the parameters passed, however the culture settings such as currency symbol, time and number format should remain as en-US locale.
My understanding about ASP.Net localization is a package deal, am I wrong? If I am right, the only way to do this is to roll my own solution?
View 4 Replies
Jan 5, 2010
in my project the design view is not viewed, but the project is working well and good .. the only issue is i cant see my design view ..
error stated is ""Cannot switch views: Validation (Internet Explorer 6): Element 'Style' cannot be nested within element 'td'.""
View 2 Replies
Sep 17, 2010
I am getting below error while running my application
Exception in MS Oracle DAAB Method - GetDataSet : Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "DABResource.resources" was correctly embedded or linked into assembly "DBServices" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Description:An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Exception: Exception in MS Oracle DAAB Method - GetDataSet : Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "DABResource.resources" was correctly embedded or linked into assembly "DBServices" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Source Error: [Code]....
I am Having DBServices .dll which is registered in my assembley
Recently i installed VS 2008 in my system.this application is working fine in VS 2005 priviously.Now i am getting above error while running this application in VS2005
View 4 Replies
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
Jan 27, 2010
I followed the instructions to setup the Ajax Control Toolkit.
After that I just create a TabContainer and I'm getting this error when I try to run my website application :
Server Error in '/WebSite3' Application.
View 3 Replies
Feb 25, 2011
I want to add a calendar extender to my website so I downloaded the lastest Ajax Control Toolkit, added the calendar and when I start debugging I get this exception: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "AjaxControlToolkit.Properties.Resources.NET4.resources" was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed. I have the dlls in the bin folder... I followed all the steps in the instruction guide for installing the ajax control toolkit.
View 1 Replies
Jul 22, 2010
Server Error in '/' Application.
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure
"AjaxControlToolkit.Properties.Resources.resources" was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Description:An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Resources.MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "AjaxControlToolkit.Properties.Resources.resources" was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Source Error:
[Code]....
Stack Trace:
[Code]....
Version Information: Microsoft .NET Framework Version:2.0.50727.3607; ASP.NET Version:2.0.50727.3614
View 1 Replies
Apr 7, 2010
how can to get culture info or just culture name from the datetime string e.g i have strings like: "16/02/2008" or "23/02/2008 " can i know the culture name from the above datetime strings?
View 3 Replies
Mar 1, 2010
I have a scenario where I am using CalendarExtender on a page with UICulture and Culture as "en-US".
But I want to show CalendarExtender in "de-DE" culture. I know that I can set up EnableScriptGlobalization="True" EnableScriptLocalization="true" for ScriptManager and CalendarExtender will show up as per culture defined for page. But this does not work for me because I can not change page level UICulture and Culture from "en-US" to "de-DE" ( If I do so, I face double value issue. e.g. double d = 12.34; is displayed as 12,34 on UI and then its unmanagable while editing values).
So coming back to my problem, Can I just change culture for CalendarExtender so that page culture is set to "en-US" and calender is shown in some different language? I know its not something straightforward, I might need to dig up source code.
View 7 Replies
Jun 1, 2010
I created a custom clander server control basing on "System.Web.UI.WebControls.Calandar" and when i change the culture from login Screen (Ex:- Spanish) i am setting only the UI Culture in the page base class. When i had the Both "CurrentUICulture" and "CurrentCulture" set i could see the Day (Mon Tue) of the my custcalander control in the corresponding culture, but when i commented out i see them in English only (not in the corresponding culture set while loggin in. The reason why i commented out the "CurrentCulture" was that when i set this the middle tier or code behind files also running in this culture (as we are setting on the CurrentThread culture) and causing decimal data coming in this culture (Ex:- spain) and so on. So i only set the "CurrentThread.CurrentUICulture" only to corresponding culture and not the "Thread.CurrentThread.CurrentCulture". Is there a way to acheive this, i mean How to make the Day (Ex:- Mon, Tue, Wed) in the corresponding culture with out setting "Thread.CurrentThread.CurrentCulture"?
/// <summary>
/// Current selected culture
/// </summary> [code]....
View 3 Replies
Feb 6, 2011
I have a method...
[HttpPost]
public ActionResult Start(SomeViewModel someViewModel) { ... }
that based on some conditions returns things like return View("Invalid"), View("NotFound"), View("Run", anotherViewModel), etc. The problem is that no matter what view I present, the URL does not change to reflect the new controller/action. This poses a problem when my View wants to post to a different action. How can I fix this?
View 2 Replies
Jun 29, 2010
am using Gridview in my web page, when i load the web page, the table header also displaying in the GridView. So i want to give my different header name in datagridview.So how to change the setting in datagridview.
View 2 Replies
Jul 22, 2010
I basically have quite a large site collection with various site and sub sites that all contain their own document libraries. I need to change the default view of each document library to include the following fields:
Checked out to.
Check in comments.
This is ok as I have written an app that will loop through all existing lists and do this however is there a way I can change the template for a document library so that any future lists that are created will automatically contain these two fields in the their default view?
I am using WSS 3.0.
View 1 Replies
Nov 18, 2010
I want to modify the way the Views are organised in my project to allow for a custom way of handling Globalization
I want to have an extra route param containing the country code and to pass this down to the view engine so that the correct view is displayed.
My mapRoute rule in Global.asax is set up like this...
[Code]....
So I want to just have 1 controller called main and then have my view folders organised like this..../Views/Main/en/Index.cshtml/Views/Main/fr/Index.cshtml I have tried creating a custom view engine but i don't know how to access the countrycode route value because none of the examples show how to do this.
Here is my attempt at a custom Razor View Engine
[Code]....
View 1 Replies
Nov 15, 2010
how do I change the view engine from aspx to razor in an existing project? If I just change the file extension to cshtml I always get "The controller for path '/path/About' was not found or does ..."
View 2 Replies
Feb 20, 2011
I have a condition in mmy MVC view like this:
if (Profile.visStats == 0)
<img id="image1" alt="" class="statbackground" src="leftblueFolder.png"/>
else
<img id="image2" alt="" class="statbackground" src="rightblueFolder.png"/>
This works fine.
Now I have two link buttons
<a id="visGamebut" runat="server" >Game</a>
<a id="visSeasonbut" runat="server">Season</a>
1) onclick visGamebut I want to make Profile.visStats = 1 and show image2.
View 1 Replies