Cannot set textbox value in Callback handler in asp.net

Posted by user102533 on Stack Overflow See other posts from Stack Overflow or by user102533
Published on 2010-03-16T18:32:57Z Indexed on 2010/03/16 18:41 UTC
Read the original article Hit count: 232

Filed under:
|
|

I am using ASP.NET Callbacks (that implements the ICallbackEventHandler) and in the handler, I try to set a value of the text box:

txtName.text = "Test";

but this value is not set. Is this a limitation with callback? It appears I cannot do much in a callback handler other than sending back a string to the client side (ofcourse I can access the Session etc)

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about callback