Following is not working

    <asp:TemplateField HeaderText='<%=class.getText("Address")%>' SortExpression="FirstName">blah blah</asp:TemplateField>

I cannot use "#" as this is not databind element i.e HeaderText='<%#class.getText("Address")%>'

link|improve this question

25% accept rate
feedback

1 Answer

Then you have to set the HeaderText property in the backed, in PageInit most likely. ASP.NET server controls cannot have ASP original server tags in it, only markup can.

link|improve this answer
After research i found that i can like this. headertext='<%$Resources:resource,id%>' but it isnt working for me. – jet Nov 15 '10 at 16:31
feedback

Your Answer

 
or
required, but never shown

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