Tagged Questions

9
votes
7answers
401 views

Accessing resource strings with CultureInfo in .NET

Another simple questions. I have website with different languages. If I want to access a string from the resource file I would use it like this Resources.MyResourceFile.MyStringIdentifier Very ...
9
votes
7answers
3k views

How do I share user controls between web applications in ASP.NET?

This question is a follow up to my question about sharing resources between web applications, because I have not yet found a good solution. I have a web application with user controls and resources ...
8
votes
4answers
182 views

Strategies for localizing large amounts of text in .NET applications

I'm working on an fairly large ASP application that will be fully localized. I'm using the standard named resx approach in satellite assemblies, with fallbacks (that is, es-MX, es-CL and fallback ...
8
votes
7answers
6k views

Use ASP.NET Resource strings from within javascript files

How would one get resx resource strings into javascript code stored in a .js file? If your javascript is in a script block in the markup, you can use this syntax: <%$Resources:Resource, ...
7
votes
6answers
962 views

Are there any performance issues or caveats with resource (.resx) files?

Resource files seem great for localization of labels and messages, but are they perfect? For example: Is there a better solution if there is a huge amount of resources? Like 100,000 strings in a ...
7
votes
2answers
3k views

Access resx resource files from another project

this is my first question on here so be gentle! Im using asp.net 3.5, my solution currently has 2 projects, an API class project and a website project, within the class project i have a resource ...
7
votes
3answers
2k views

Is there a way to make Strongly Typed Resource files public (as opposed to internal)?

Here's what I'd like to do: I want to create a library project that contains my Resource files (ie, UI Labels and whatnot). I'd like to then use the resource library both in my UI and in my Tests. ...
6
votes
3answers
265 views

What is the recommend way to create a custom culture and associated resource files for a specific Client?

I have client that wants to specifiy their own version of localized content for a subset of my string resources. For simplicity here is basic example: Lets say I have 2 localized strings (showing ...
6
votes
2answers
2k views

Subfolders in App_GlobalResources (ASP.NET)

Is it possible to put resource files (.resx) within subfolders inside App_GlobalResources? For example: /App_GlobalResources/someresources/myfile.resx ...
6
votes
2answers
1k views

How do I share common web resources between web applications in Visual Studio?

I have three web application projects that share a common library of custom server controls. Sharing the code behind files is easy - they are compiled into a dll that i reference in the other projects ...
4
votes
7answers
155 views

What's the best way to implement a global constant in C#?

I have a Common project inside which I've added my public constants for QueryStringNames. I know generally constants should be as internal or private but I'd need public constants here as I'd like to ...
4
votes
2answers
207 views

Strategy for sharing resources between projects

I have a central library (DLL) called Core that is used by many projects (Some web apps, some win forms, some other class libraries). Some resources are stored in the Core library. When I need to ...
4
votes
2answers
740 views

How to get resource strings from ASP.NET markup?

Hi I have an assembly called like X.Common.DLL. There is some resources files for multilanguage app. Let's say it Language.resx Language.en-US.resx....etc.... I have a web application which contains ...
4
votes
2answers
716 views

How to Access External Resources from Website Aspx

My current solution consists of several Class Libraries and a Website. I'm in the process of globalizing the application and I realized that my resources need to be accessed by all the projects not ...
4
votes
2answers
567 views

Why should I use global resources?

in some projects (web application projects) I'm using global resource files. (Stored in the App_GlobalResources folder) pro: Really easy to use: e.g. in the markup Property="<%$ ...
4
votes
4answers
4k views

How to replace the default ModelState error message in Asp.net MVC 2?

I need to replace the model state resource (to another language). I've seen some answers to the question above, but unfortunately I could'nt make it work. Any detailed answer or example would be ...
4
votes
7answers
2k views

Using html inside resource files

I am developing a standard small ASP.Net MVC website which will be made multilingual using ASP.Net resource files. My question is about the resource files. See if you have a block of text which ...
4
votes
4answers
7k views

How do I access GetGlobalResourceObject function from a class that is not a page?

I have a class in my asp.net proj, I would like to get access GetGlobalResourceObject (that page exposes), from anywhere in the site, possible? In other words I wanna access the global resources from ...
4
votes
6answers
585 views

What are the best learning resources to teach ASP.NET MVC to an ASP.NET programmer?

What materials do you recommend for an experienced ASP.NET to learn ASP.NET MVC?
4
votes
2answers
279 views

How can I share a folder of content between multiple ASP.Net projects in studio?

I would like to share 2 folders of content ('stylesheets' and 'graphics') between multiple asp.net projects in a solution. Is there a way to do this and have studio display the graphics and such ...
3
votes
2answers
112 views

How would you manage your constants for each c# class?

In all applications, there are always some constant values that are used. I don't like hardcoding these values in my application in each code as it reduces maintainability significantly. I have 2 ...
3
votes
3answers
250 views

Split Large Resource File into multiple files physically while compiler treat it as one

Is it possible to split one big Resource(.resx) file into several files physically and still use the same syntex to get data i.e. GlobalResource.resx into GlobalResource1.resx, ...
3
votes
3answers
474 views

asp.net read from other local resource

I have local resources files like on screenshot: How can I read local resource data of AddCustomer page in Default.aspx page? Thanks!
3
votes
2answers
1k views

Programmatically set Culture of User Controls in ASP.NET

I'd like to programmatically set the culture of my User Control which defines several Labels, Buttons and Textboxes ... Usually, for aspx-pages you override the InitializeCulture-Method and set ...
3
votes
2answers
114 views

Create Resource from asp.net page

Hi is it better to create one resource for every asp.net page application. or to create a global resource for all pages? my application has about 100 pages and 200 usercontrols. if i want to create ...
3
votes
2answers
342 views

Display Outlook rooms occupancy in a web page

I'm decommissioning a meeting room scheduling [web] tool in favor of the same Outlook's functionality. I'd like, however, to publish (read-only) a "Group Schedule" view in a web page. To make the ...
3
votes
5answers
887 views

Why can't I use resources as ErrorMessage with DataAnnotations?

Why can't I do like this? [Required(ErrorMessage = "*")] [RegularExpression("^[a-zA-Z0-9_]*$", ErrorMessage = Resources.RegistrationModel.UsernameError)] public string Username { get; set; } What ...
3
votes
2answers
720 views

How can I use resources in ASPX-files?

I use a WebResources.resx to translate all strings in the Web UI. It works like: <asp:Button ID="Button1" runat="server" Text="<%$ Resources:WebResources, Button1Caption %>" /> But if ...
3
votes
1answer
998 views

Sharing asp.net resource files between web applications

I have multiple projects that need to share resource files (.resx) Suggestions have been made to move resource files to a separate assembly and have web projects reference it. Is there an example of ...
3
votes
3answers
975 views

Global resources can't be resolved after publishing Website in VS2008

I have a web-project running in VS 2008. We have some global resource files (*.resx) in the App_GlobalResources folder for internationalisation. All this works like a charm on my local IIS ...
3
votes
2answers
773 views

ASP.NET: Better store localizable UI text in resources or in the database?

There seems to be two different approaches. ASP.NET framework gives us an easy way to localize pages by putting UI strings in resources, like UserProfile.en.resx, UserProfile.fr.resx etc. The other ...
3
votes
4answers
3k views

Best way to save a Stream to a file in asp.net 3.5?

I have a Stream object that is populated with the contents of an XSD file I have as an embedded resource on a project I am working on like so: using ( Stream xsdStream = ...
3
votes
3answers
476 views

jQuery & ASP.Net Resources & Gotchas

What are some good jQuery Resources along with some gotchas when using it with ASP.Net?
3
votes
2answers
639 views

ResourceManager and Unit Testing

I was curious if anyone had any problems creating unit tests around using the ResourceManager. I am using Visual Studio test edition and it appears that the satellite assemblies don't get loaded ...
2
votes
1answer
62 views

Print a Resources.resx file value within ASP.NET tags

I'm required to print a value of a string which within a resource files (.resx) within asp.net tags i used the following approaches for example : <ext:ComboBox ID="cmbProgram" runat="server" ...
2
votes
2answers
157 views

How to locate resources in Orchard

I am writing an Orchard theme, and I'd like to be able to locate some of the resources packaged with the theme (images/swfs etc). What is the best way of doing this? I've had a look at ...
2
votes
1answer
190 views

Sliding expiration of localized ASP.NET resources

Assume that we have 2 sites myDomain.AU and myDomain.RU having the same code and localized resource files *.resx and *.ru.resx. We expected that most of English users will use AU site and most of ...
2
votes
2answers
119 views

Localize application on button click

I have in my project mainMaster page were locates imageButtons: <asp:ImageButton ID="RU" ImageUrl="/Images/RU.png" runat="server" onclick="RU_Click"> <asp:ImageButton ...
2
votes
1answer
193 views

how to change, in CSS files, src attribute for images dynamically at deploy? (ASP.NET Web Forms)

I am creating an ASP.NET Web Forms website and I need to optimze the loading time of the website. One of the methods will be to make images load from dfferent servers. For all images exposed through ...
2
votes
4answers
303 views

Unable to change culture of .aspx page

I'm unable to change a culture of .aspx page. When I specify the culture by using page directive at the top: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Index.aspx.cs" ...
2
votes
3answers
79 views

how to know how many memory resources I'm using with sessionState variables

It's possible to know how many memory resources I'm using with SessionState variables in an Asp.Net site? I don't want to make changes to the application to resolve it. Will be great if I can know ...
2
votes
1answer
562 views

ASP.NET MVC2 localization: How to format language/country dependend text?

I want to build an multi language ASP.NET MVC 2 website. Let's say I have the following sentences: MyStrings.resx: TestString : "This is my test" MyStrings.de.resx: TestString : "Dies ist mein ...
2
votes
3answers
482 views

Generate Local Resource for all pages

Hi Is There Any Way or trick to generate local resource for all pages in visual studio 2010 automatically? I have about 500 pages and UserControls. its hard to generate resource for every page one by ...
2
votes
1answer
144 views

ResX files and extra application layer

we are making an web application using some big asp.net web toolkit. At the beginning we created a lot of base classes such as commands and server controls to make our work easier. Now when we built ...
2
votes
1answer
155 views

Can one local .resx string reference another local .resx string?

I am trying to determine if it is possible to add a concatenated string to one of my local .resx files. This example should clarify: Let's say I have a simple ASP.NET webpage composed of (1) a label ...
2
votes
1answer
345 views

How to make Multilingual Website in asp.net MVC?

I don't understand where to put the Resources and how can we take the value from that?
2
votes
1answer
207 views

ASP.NET MVC localization: Get a resource instance

I'm trying to implement this feature. I created a resource and set it access modifier to public, also Custom Tool property value to PublicResXFileCodeGenerator. I'm trying to get an instance of ...
2
votes
1answer
122 views

ASP.NET Local Resources Localizacion

We use resx files to localize my web applications. We have created a bunch of resource files under different APP_LocalResource folders and we are accessing that resources from pages and user controls ...
2
votes
5answers
2k views

Visual Studio - Tool to replace hard coded strings with resources

I have a big ASP.NET project full of hard coded strings, that now have to be extracted to resources. Such strings can be found almost anywhere (in .cs files, .aspx files, .ascx files, etc.) and the ...
2
votes
2answers
612 views

App domain restarts when .resx file changes. Any way to avoid this?

I have an ASP.NET app with many .resx (resource) files used for localized user controls and pages. We would like these files to be editable on-the-fly. However, we have noticed that editing these ...

1 2 3 4