I saw code like this:
if (this.Request["__EVENTARGUMENT"] == "Flag")
//DoSomthing...
What does __EVENTARGUMENT
mean and are there some parameters like it to access?
I saw code like this:
if (this.Request["__EVENTARGUMENT"] == "Flag")
//DoSomthing...
What does __EVENTARGUMENT
mean and are there some parameters like it to access?
It can be set by calls to __doPostBack
in the JavaScript on the page.
This article explains it in a bit more detail.
© 2022 - 2024 — McMap. All rights reserved.
Request["__EVENTARGUMENT"]
is coming as empty string. #14487233 – Deepen