我的网页中有多个包含不同格式的div,但是一次只能看到其中一个,我想知道是否有可能仅通过后面的代码来验证一个div。
<div runat="server" id="Div1">
//some form with validators
//sumbit button
</div>
<div runat="server" id="Div2">
//some form with validators
//sumbit button
</div>
我需要做这样的事情:
if ((reference only the div I want).IsValid){
//do stuff
}
else {
//do other stuff
}