How to check if button is clicked in LoadViewState?
I want to check if button is clicked in LoadViewState
Код:
protected override void LoadViewState(object savedState)
{
base.LoadViewState(savedState);
//Here If (btnAddExperience_Click() is clicked)
{
method1();
}
//if(btnAddVisa_Click())
{
method2();
}
}
protected void btnAddExperience_Click(sender,e)
{
//some code
}
protected void btnAddVisa_Click(sender,e)
{
//some code
}
Есть идеи?
1 ответ
Это работает в pageload, вы можете попробовать это в loadviewstate
if( IsPostBack )
{
// get the target of the post-back, will be the name of the control
// that issued the post-back
string eTarget = Request.Params["__EVENTTARGET"].ToString();
}