I have an input button on an ASP.NET form, but I want the text displayed to come from a server side resource file.
The following syntax fails, and I can't enclose it in a literal because the input tag cannot contain any other tags:
<input id="btnX" type="button" disabled="disabled" value='<%$Resources:res,Button.Text%>' />
Any possible solutions?
Thanks :)