Ask a Question related to ASP.NET General, Design and Development.
-
Philipp Sumi #1
localizing web form without setting values programmatically
Hello
I have to start an Asp.net project that involves i18n, so I was doing
some reading on the subject. I'm not sure (and I *really* hope I'm
wrong) but is it true, that there is no way to store localized values in
resource files without assigning them programmatically? Which means: I
can't just set a labels text as usual and change this value in a
localized resource file which is being assigned dynamically regarding
the regional settings?
Having 50 pages with loads of controls that all have settings like
<%=LocRM.GetString("txtWelcome")%>
is a design- and administration-nightmare and a waste of the built-in
i18n-support...
:-(
Thanks for your advice
Philipp
Philipp Sumi Guest
-
Programmatically setting 100% width
Is there a way to set a width of 100% for dynamically created components? ... -
Programmatically setting the Printing Preferences of Adobe PDF
Hi, I use Adobe Acrobat v6.01 Professional. I am trying to set the printing preferences via VB Code, "View Adobe PDF results" and "Ask to... -
Setting Values in Form for Object
I would like to pre-set input form values in a custom object. For example: 1. I created an object that inserts the following HTML code fragment:... -
Setting target of hyperlinkcolumn programmatically
I am having trouble determining if I can set the target property of a hyperlinkcolumn based on the contents of field in a returned SQL query that is... -
Problem in getting DataGird Coulmn Values if Datagrid is created Programmatically
hi I am Creating Datgrid Programmatically. looking at the code provided in http://www.dotnetbips.com/displayarticle.aspx?id=66 The example... -
Marc Hoeppner #2
Re: localizing web form without setting values programmatically
Hi,
well, you can use the normal way (ie. <asp:label id="..." text="MyText"
..../> and then overwrite it with LabelName.Text =
MyLocRM.GetString("lblMyLabel"). Still this is a lot of work. My approach
was to build it as I normally would and then get a temp to do the RM
plumbing :) - Worked pretty well and you still can use the WYSIWYG editor if
you really have to. Other than that I wish that MS would do another version
of this one here, which sounds very promising, but has it's own problems:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/entloctoolkit.asp[/url]
Best regards,
Marc Höppner
NeoGeo
"Philipp Sumi" <sumip@freesurf.spam.ch> wrote in message
news:eG3PTuGUDHA.3188@tk2msftngp13.phx.gbl...> Hello
>
> I have to start an Asp.net project that involves i18n, so I was doing
> some reading on the subject. I'm not sure (and I *really* hope I'm
> wrong) but is it true, that there is no way to store localized values in
> resource files without assigning them programmatically? Which means: I
> can't just set a labels text as usual and change this value in a
> localized resource file which is being assigned dynamically regarding
> the regional settings?
>
> Having 50 pages with loads of controls that all have settings like
> <%=LocRM.GetString("txtWelcome")%>
> is a design- and administration-nightmare and a waste of the built-in
> i18n-support...
>
>
> :-(
>
>
> Thanks for your advice
>
> Philipp
>
Marc Hoeppner Guest
-
Philipp Sumi #3
Re: localizing web form without setting values programmatically
Hello John, Karl and Marc
Thanks for the fast reply! I'll evaluate the Localization Toolkit which
sounds promising. Furthermore, I discovered a localization component
that provides the functionality I was missing. Unfortunately, it's
commercial but it's a fallback if the toolkit does not meet my requirements:
[url]http://www.winformreports.co.uk/features_loc.htm[/url]
Thank you very much for your inputs :-)
Philipp
Philipp Sumi Guest



Reply With Quote

