Click here to Skip to main content
15,896,111 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have Button and Textbox on Master page. I want to validate textbox as Required through JavaScript. And it should work on each contentPage.Please Help me...
Posted

See below..

ASP.NET
<asp:button id="btnsendrequest" runat="server" text="Submit" onclientclick="return validaterequirment()" xmlns:asp="#unknown" />


Javascript code below..

SQL
function validaterequirment()
{
    if (document.getElementById("<%=TextBox1.ClientID%>").value=="")
      {
         document.getElementById("<%=TextBox1.ClientID%>").Style.add("border","solid 1px red");
         return false;
      }
}

Write above code in your master page. It will work in all content pages. TextBox1 is id of textbox. If y=textbox1 value is empty its border color become red and avoid postback.
 
Share this answer
 
v2
you handle form submit event from your master page and check your textbox value. If it is empty then return false else return true. Return false means your form will not submit to the server. True means it can process further.

$('#yourFormId').submit(function() {
return !$("#textBoxId").val() == "";//if empty then return false else return true
});
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900