Dynamically changing the type of validator on a textbox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T12:41:49Z http://stackoverflow.com/feeds/question/730615 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/730615/dynamically-changing-the-type-of-validator-on-a-textbox 0 Dynamically changing the type of validator on a textbox Blankman 2009-04-08T15:48:08Z 2009-04-08T16:52:49Z <pre><code>&lt;asp:DropDownList ID="ddl1" runat="server"&gt; &lt;asp:ListItem Text="First" Value="1"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="Second" Value="2"&gt;&lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; &lt;asp:TextBox ID="tb1" runat="server"/&gt; &lt;asp:Button ID="btn1" text="Go!" OnClick="btn1_Click" runat="server" /&gt; public void btn1_Click(object sender, EventArgs e) { } </code></pre> <p>If the user selects the dropdown with text 'First', the data in the textbox has to be a number. If they selected 'Second', it has to be letters only.</p> <p>How can I dynamically create a validation control, and change its behaviour?</p> <p>I have tried creating the validation object, setting the control to validate to the textbox, and calling its Validate method in the btn1_click event but it didn't work.</p> <p><b>update</b></p> <p>here is the code I tried:</p> <pre><code>public void btn1_Click(object sender, EventArgs e) { RequiredFieldValidator rfv1 = new RequiredFieldValidator(); rfv1.ID = "rfv1"; rfv1.ControlToValidate = tb1.ID; rfv1.Text = "please enter a value for tb1"; rfv1.Validate(); Response.Write("&lt;br&gt;Page.IsValid: " + Page.IsValid); } </code></pre> http://stackoverflow.com/questions/730615/dynamically-changing-the-type-of-validator-on-a-textbox/730655#730655 2 Answer by Joel Coehoorn for Dynamically changing the type of validator on a textbox Joel Coehoorn 2009-04-08T15:57:26Z 2009-04-08T15:57:26Z <ul> <li><p><strong>Option 1:</strong><br /> Add both validators to the textbox and set them enabled/disabled based on the user selection.</p></li> <li><p><strong>Option 2:</strong><br /> Use a custom validator that takes the dropdownlist into account (and maybe wrap it all into a custom control).</p></li> </ul> <p>Of these, I think I prefer option 1, but I'd have to try it to see how well it really works in the browser (how easy or is it possible to swap the enabled validator in javascript).</p> <p>You don't want to add/remove the validator dynamically, because that has to be done server side and that means doing a post back when the user changes the dropdownlist selection to set the correct validator <em>before</em> you can validate the textbox. Both of my suggested solutions avoid that.</p>