I was juste wondering if it was possible to use String.Format with the following inline tag :
<asp:RequiredFieldValidator ControlToValidate="tbTest" Text="<%$ Resources:ErrorMsg, E3032 %>" runat="server" />
like this so
<asp:RequiredFieldValidator ControlToValidate="tbTest" Text='<%= String.Format(<%$ Resources:ErrorMsg, E3032 %>, "Other Text to insert")' runat="server" />
I know you can’t do that but it’s just for the picture.
tx
I ended up creating my own expression for this purpose :
web.config :
.aspx :
.vb :