Hello all,
This may seem some frequent question but I need help with some feedback.
I have a page say Users.aspx in Users folder, for this I have resource files in App_LocalResources folder within same Users folder.
I need to support multiple languages so that I have many resource files like Users.aspx.resx (default one), Users.aspx.en-US.resx, Users.aspx.fr-FR.resx etc.
I have a label on Users page say "lblMessage".
Now in code behind I need to change text of "lblMessage" label based on some condition.
like if code runs ok then text would be "Success" otherwise "Error".
So basically point is text is different for same label.
Now please tell me how can I set that label conditionally and using resource files.
It means text should be displayed in culture specified by user and should be conditional like "Success" / "Error" in above case.
user's cultu ...
Go to the complete details ...