我有一个列表视图
<asp:ListView ....>
<asp:TextBox ID="txtComment" ... />
<asp:RequiredFieldValidator ID="rfvComment" ControlToValidate="txtComment" ... />
<act:ValidatorCalloutExtender ID="vceComment" TargetControlID="rfvComment" ... />
<asp:Button ID="btnAddComment" ... />
</asp:ListView>
假设这个 ListView 创建了以下内容:
文本框 1 按钮 1
文本框 2 按钮 2
文本框 3 按钮 3
如果我单击 Button2,RequiredFiledValidator/ValidatorCalloutExtender 将应用于 TextBox1 而不是 TextBox2,如果我单击 Button3,RequiredFiledValidator/ValidatorCalloutExtender 也将应用于 TextBox1,我希望 RequiredFiledValidator/ValidatorCalloutExtender 应用于按钮旁边的 TextBox,所以如果我单击 Button3,我希望它适用于 TextBox3。
有谁知道我怎样才能做到这一点?
谢谢你。