1.在页面上添加2个GridView控件以及一个Button控件。 2.对于每个GridView,定义一个CustomValidator来验证其是否有选择项。 3.在Button控件的Click事件中,调用Page.IsValid属性来验证GridView中的所有CustomValidators是否通过。 以下为示例代码:
ASPX页面:
...
...
代码后端:
protected void Button1_Click(object sender, EventArgs e)
{
if(Page.IsValid)
{
//Your code here if both GridView1 and GridView2 have selected items
}
}