Hi friends,
how to get selected dropdown value in code behind when disabled?
string claimtype = Request.Form["drpdwnClaimType"];
i have tried above code but value is retrurning as null.
<div class="col-sm-2">
<div class="form-group">
<label>Claim Type</label>
<select class="form-control input-sm" runat="server" id="drpdwnClaimType" disabled="disabled" style="height: 20px;">
</select>
</div>
</div>