vote up 1 vote down star

In my Javascript I am manually calling

__doPostBack('myUpdatePanelId','mycustomeventarg')

It works fine except the EventArgs in my

protected void Page_Load(object sender, EventArgs e)

is always empty. Do I have to cast it to something else somehow?

flag

1 Answer

vote up 2 vote down check

I think that is normal. In my current project on every page call (whether or not postback)...

e == EventArgs.Empty

link|flag
So is there no way to pass arguments you formed with JS? – Matt Oct 29 at 0:12
__EVENTARGUMENT is a hidden field so you can use Request.Params["__EVENTARGUMENT"]. – Tom Oct 29 at 0:27
Or because you are using a server control override the Page.RaisePostBackEvent msdn.microsoft.com/en-us/library/… – Tom Oct 29 at 0:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.