I have the following code:
<asp:TextBox runat="server" ID="textBox1" />
<asp:CustomValidator ID="validator1" runat="server" ErrorMessage="error message" OnServerValidate="thing_to_validate" Display="Dynamic"></asp:CustomValidator>
This allows the error message to show up BELOW the textbox when validating.
My question is, how can I make the error message show up INSIDE the textbox?
Thank you!