Hi All,
In my asp.net website ,handle the validation form C# code behind via script alert,like this
HideTabAlert("Model Classification is required for Part Family.");
HideTabAlert("Please enter comments", "ctl00_ContentPlace_OrderPopupPanel","ModalBehaviourDetails_backgroundElement");
public void HideTabAlert(string Errormessage)
{
ScriptManager.RegisterStartupScript(this.Page
, Page.GetType()
, "alert"
, string.Format("showHideHeader1('{0}');", Errormessage)
, true);
}
public void HideTabAlert(string Errormessage, string PopupId, string ModalId)
{
// ScriptManager.RegisterStartupScript(this, GetType(), & ...
Go to the complete details ...