> Hello - I'm trying to dynamically change an asp:HyperLink's text
> through JavaScript, and finding that the new value that's set in
> JavaScript doesn't get posted back. I've tried to explicitly set
> EnableViewState to "True", but that doesn't help. Is there a better
> way to do this and still update the text through client-side code?
It's impossible to change the server controls text through Javascript.
The server control only exists on the server while the page is created,
the only thing that exists in the browser is the elements that the
browser has created from the html code that the server control has rendered.
The text of the link is not posted back to the server. The only things
that are posted back are the values in the form fields. If you want
anything posted to the server you have to put it in a form field.
The innerText property only exists in Internet Explorer. Use innerHTML
instead.

Signature
Göran Andersson
_____
http://www.guffa.com