How to pass a resource file string to a function in an external .js file
- by hima
Hi ,
There is a Messages.resx file under App_GlobalResources in my solution. Everytime i create a string and give a value to the string
internal static string Alert_EnterUserName {
get {
return ResourceManager.GetString("Alert_EnterUserName", resourceCulture);
}
}
is created automatically.
Can anybody guide me how to use this string in a function which is present in a seperate .js file?
Thanks in advance