Introduction: 
Description: 
   
In previous articles I explained validate checkboxlist in JQuery, validate radiobuttonlist using JQuery, validate email address using JQuery and many articles relating to JQuery. Now I will explain how to validate dropdownlist using JQuery in asp.net.
In previous articles I explained validate checkboxlist in JQuery, validate radiobuttonlist using JQuery, validate email address using JQuery and many articles relating to JQuery. Now I will explain how to validate dropdownlist using JQuery in asp.net.
To implement this one we need to write
code as shown below in your aspx page
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head id="Head1"
  runat="server"> 
<title>Validate asp.net Dropdownlist in JQuery</title> 
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"> 
</script> 
<script type="text/javascript" language="javascript"> 
$(document).ready(function()
  { 
$('#btnSubmit').click(function() { 
if ($("#ddlCountry").val()>0)
  { 
return true; 
} 
else { 
alert('Please
  select Country') 
return false; 
} 
}) 
}); 
</script> 
</head> 
<body> 
<form id="form1"
  runat="server"> 
<div> 
<table> 
<tr> 
<td> <b>Select
  Country:</b></td> 
<td> 
<asp:DropDownList ID="ddlCountry"
  runat="server"> 
<asp:ListItem Text="Select" Value="0" /> 
<asp:ListItem Text="Australia" Value="1" /> 
<asp:ListItem Text="India" Value="2" /> 
<asp:ListItem Text="England" Value="3" /> 
<asp:ListItem Text="USA" Value="4" /> 
<asp:ListItem Text="China" Value="5" /> 
</asp:DropDownList> 
</td> 
</tr> 
<tr> 
<td></td> 
<td> 
<asp:Button ID="btnSubmit"
  Text="Submit"
  runat="server"
  /> 
</td> 
</tr> 
</table> 
</div> 
</form> 
</body> 
</html> 
 | 
 
If
you observe above code in header section I added script file link by using that
file we have a chance to interact with JQuery and in the script we have btnSubmit button click function
which is used to validate dropdownlist using JQuery in asp.net. 
Demo
| 
 If you enjoyed this post, please support the blog below. It's FREE! Get the latest Asp.net, C#.net, VB.NET, jQuery, Plugins & Code Snippets for FREE by subscribing to our Facebook, Twitter, RSS feed, or by email.  | 
|||
 
                                        Subscribe by RSS
                                      
 
                                        Subscribe by Email
                                      
 | 
|||

                                        Subscribe by RSS
                                      
                                        Subscribe by Email
                                      
1 comments :
What in case of multiple dropdownlist, and want to show alert in a single Alert box for all.
Note: Only a member of this blog may post a comment.