Hi all ,
I have this validation set up and sometimes it fires and some times it doesn't, what could be the reason? thanks for any tips
If txtDescription.Text = "" Then
lblErrors.Visible = True
Errors = 1
lblErrorDescription.Text = "Please supply Description Of Problem."
Else
lblErrors.Visible = False
Errors = 0
lblErrorDescription.Text = ""
End If
<tr>
<td></td>
<td><font color="red"><asp:label id="lblErrors" runat="server" visible="False" text="There are errors with your new notification. See messages noted in red." /></font></td>
</tr>
<tr>
<td></td>
<td><font color="red"><a ...
Go to the complete details ...