例如頁面上出現:
<asp:textbox id="txtBox" runat="server"></asp:textbox>此時頁面的兩個 Button 怎麼按都會出現驗證的錯誤訊息(如下圖)。此時需要在程式碼上加上
<asp:RequiredFieldValidator ID="txtBoxFieldValidator" runat="server"
ControlToValidate="txtBox" ErrorMessage="Please keyin txtBox Field"
Display="Dynamic"></asp:RequiredFieldValidator>
<asp:Button ID="ValidatorBtn" runat="server" Text="Validator"/>
<asp:Button ID="OtherBtn" runat="server" Text="Other"/>
<asp:textbox id="txtBox" runat="server"></asp:textbox>就可以解決了。
<asp:RequiredFieldValidator ID="txtBoxFieldValidator" runat="server"
ControlToValidate="txtBox" ErrorMessage="Please keyin txtBox Field"
Display="Dynamic" ValidationGroup="VGroup" ></asp:RequiredFieldValidator>
<asp:Button ID="ValidatorBtn" runat="server" Text="Validator"
ValidationGroup="VGroup" />
<asp:Button ID="OtherBtn" runat="server" Text="Other"/>
回目錄
回首頁
沒有留言 :
張貼留言