The form has one asp:label and one html input button. On the button click, I want to update the label (e.g. some server side data).
I would like to do this without UpdatePanel or jQuery. I can do a basic ajax call to an .aspx on the button click. What is the best way to update the label with the result? [figure it has to be an asp:label]
Do I need a hidden field which gets loaded with the label's ClientID on Page_Load? Is there an easier way?
thx