I am try in to get the ClientID of one of my server controls to appear in a Javascript in my aspx page.
Obviously I am going about it the wrong way, but my intent should be made clear in the following:
doSomethingFirst();
var hid = "<% Response.Write(HidingField.ClientID) %>";
doSomethingElse(hid);
Any advice?
Thanks.