In this Article, I explain how to get selected dropdown value usingj query in asp.net. Here I am using jquery 1.8.3 for achieve this. Here I demonstrate a simple example of binding a country with dropdownlist.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
function getvalue() {
var cbocountry = $('#cbocountry');
var selectedvalue = $('#cbocountry').val();
alert(selectedvalue);
}
</script>
<asp:DropDownList ID="cbocountry" runat="server">
<asp:ListItem Text="India" Selected="True" Value="1" />
<asp:ListItem Text="UAE" Value="2" />
<asp:ListItem Text="KSA" Value="3" />
</asp:DropDownList>
<asp:Button ID="Button1" runat="server" Text="Getselectedvalue" OnClientClick="getvalue()" />
Post your comments / questions
Recent Article
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
Related Article