Manual postback
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
If you do a manual postback by calling
__doPostBack
in javascript, what happens to the value you send for theeventArgument
argument? For example, suppose the following is called in javascript:__doPostBack('Button1','Woof');
This causes a postback, and I want to extract the value "Woof". How/where do I do that, if it is even possible? (In
Button1_Click
, the only thing the EventArgs argument contains is something called Object, of typeSystem.EventArgs
.)