Dear jawahars,
Thanx for your reply,
I understand what u are saying and trying to do. Now it's only possitble to add 1 meta:resourcekey=" tag.
so in asp.net it will be:
<asp:Label id="Label1" runat="server" meta:resourcekey ="label1Resource1" />
So in the lets say strings.en-US.resx file i would have something like this:
label1Resource1.Text | value =" My label was true so this is my true text value"
Now it's not clear to me how to set another LabelResource1.Test | value = "My label was false so this is my false text value "
Maybe you can explain this one to me?
Another question is how to deal with dynamic strings.
case like this one:
string currentUser = HttpContext.Current.User.Identity.Name;
So in code behind i build a string let's say label1.Text = "Hello" + currentUser + "Nice to have you here!";
You see that i can't put this string as a global or local string because i don't know in atvance which user im dealing with.
It would be nice if there's a way to dynamically build the resouce strings.
Im exciting to hear from you
Thanx in advance
Talsja