vote up 0 vote down star

Hello guys,

I used localization helper from Matt Hawley. It's really working great. I have a problem though in getting the values on javascripts/jquery.

I can't retrieve the resources text using this: example: alert('<%=Html.Resource(\"Strings,SomeKey\")%>');

Any help is greatly appreciated.

Best

flag

63% accept rate
Are you using JSP+Struts? Might be worth to note that. It might also be worth to note if you're ever able to print it as plain text in HTML or not. If not, then you can't "access" it in JS as well. – BalusC Nov 4 at 23:47

1 Answer

vote up 2 vote down

Hello guys,

Thank you BalusC for the reply. Greatly appreciated. I already got a work around. I declared variable on my .aspx page with the resources key values. Then call the variable on my separate js. So I have it like this:

In my aspx page.

<script>
 var foo="<%=Html.Resource("Strings,SomeKey")%>";
</script>

In my js. I just simply called the variable foo.

alert(foo);

There I have it!:)

I got it wrong for the first time since my variable was declared on my external js. Therefore asp.net will not be able to interpret it. Instead it will be rendered as plain text.

Best regards

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.