<asp:Button id="btnLoanCertProfileAdd" onclick="AddLoanCertProfile" runat="server" Width="35px"
<asp:CustomValidator id="ctvNewProfileName" CssClass="ErrorMsg" runat="server" ControlToValidate="txtLoanCertProfileName"
Display="Dynamic" ErrorMessage="Profile Already Exists">*</asp:CustomValidator>
Private Sub ctvNewProfileName_ServerValidate(ByVal source As System.Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles ctvNewProfileName.ServerValidate
args.IsValid = False
End Sub
Sub AddLoanCertProfile(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub