Tagged Questions
1
vote
3answers
149 views
Persian Calender in MVC , Asp.net
I use a DateTime variable in MVC and I want to show Persian calender for
@Html.EditorFor(x=> x.ProductionDate)
How can I do it?
2
votes
0answers
35 views
Instances of CultureInfo (from same culture) changing based on OS
I've a web site which writes a date like this:
CultureInfo cultureInfo = CultureInfo.GetCultures(CultureTypes.AllCultures).FirstOrDefault(c => string.Equals(c.TwoLetterISOLanguageName, ...
1
vote
3answers
113 views
Form will not submit when decimal numbers are entered
I have a problem with submitting forms when decimal numbers are present, to be precise if there is a number behind the decimal separator it wont submit. I am working with Asp.NET MVC3, Kendo UI and a ...
1
vote
1answer
390 views
Culture issues in ASP.NET MVC 3
I want to display multiple languages and UI cultures on my website. I have enabled the IIS 7 flag which picks up culture from the browser automatically as so:
<globalization
...
9
votes
3answers
6k views
ASP.Net MVC3 Modify culture for date and decimal through or not Visual Studio?
I'm working on an MVC3 application with Razor. I'm having troubles using Dates and doubles on my views. Both my Windows and Visual Studio are English, but I want to customize the culture of my project ...
1
vote
3answers
298 views
MVC 1 Parameter Binding
I'm passing a date to my server in Invariant Culture, the following format
'mm/dd/yy'
The parameter binding in MVC fails to parse this date and returns null for the parameter. This is persumably ...
4
votes
2answers
679 views
How do I render only some specific model-fields with an InvariantCulture, while the rest keeps using the users culture?
I have a couple of hidden inputs on an asp.net mvc view. Their values contain objects of type double. I want them to be rendered with the InvariantCulture as they are used to be fed to an api (google ...
1
vote
1answer
292 views
.net mvc date culture problem
when I have:
var cultureInfo = CultureInfo.CreateSpecificCulture("fr-fr");
return date.ToString("dd MMM", cultureInfo);
I get back: 01 févr.
When I run the same code but with ...
0
votes
1answer
896 views
how to find out which culture's are supported in webproject -> Class CultureInfo?
in my project i have two supported languages (german - "de", and english - "en")
I have resource files like: Home.aspx.de.resx, Home.aspx.en.resx, Home.aspx.resx
is it possible to read dynamicly ...
0
votes
2answers
332 views
.net MVC culture
What's the best approach to develop multilanguage MVC web application?. What I envision is having a drop down with several language preferences on the master page. Selecting the language option would ...
0
votes
2answers
559 views
read current culture of asp.net mvc project and change language in javascript confirm
I have a javascript confirm. My text is in english, but if I will change language/culture of my asp.net mvc project confirm is of cource still english.
I can controll it manually and just write two ...
1
vote
3answers
333 views
Where is the correct place to do culture-specific date/currency formatting for asp.net mvc views?
Given a domain object:
class BirthdayDomain
{
public DateTime Birthday { get; set; }
public decimal BirthdayPresent { get; set; }
}
I have two options for passing this to a strongly-typed ...
10
votes
1answer
1k views
ASP.NET MVC output cache for multinenant application, vary by hostname and culture
I have a multitenant application in ASP.NET MVC. The instance of the application that will be served is function of the hostname alone (something along the lines of stackexchange, I suppose).
Each ...
0
votes
3answers
173 views
Saving DateTime object on UK Dev Server vs US Live Server
I have a site that saves a date in my model to the database.
After launching my site I realised that the server has US regional settings so I had to make sure that all date's on the public site were ...
2
votes
1answer
2k views
How to change Culture?
Sorry my very poor english ...
I'm using asp.net control toolkit to do a calendar on asp.net mvc, and it works fine! But it is in english format date. How can i change to pt-BR culture? I read lot of ...
14
votes
5answers
23k views
Set Culture in an ASP.Net MVC app
What is the best place to set the Culture/UI Culture in an ASP.net MVC app
Currently I have a CultureController class which looks like this:
public class CultureController : Controller
{
...