我的WebPage上有一个FormView,当我在FormView的InsertItemTemplate中按下Submit按钮时,我试图获取FormView。我怎样才能做到这一点。我的事件发件人是按钮,但不是FormView。它有任何财产吗?
答案 0 :(得分:0)
您应该能够通过ButtonClick中的ID直接访问FV。
protected void Button1_Click(object sender, EventArgs e)
{
string id = FormView1.ID;
//Here is an explicit way to do get FV
//FormView fv = (FormView)((Button)sender).NamingContainer;
}