Question

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?

Was it helpful?

Solution

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

e == EventArgs.Empty

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top