0

I want to check if button is clicked in LoadViewState

Code:

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
}

Any ideas?

4

1 回答 1

0

这适用于页面加载,您可以在 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();
}
于 2013-10-03T05:31:26.820 回答