Hi
In below dropdown i want to set Regular Lead as default
<div class="form-group"> <label>Lead Type</label> <asp:DropDownList ID="ddlLeadType" class="form-control" runat="server"> <asp:ListItem Value="">Select Lead Type</asp:ListItem> <asp:ListItem Value="Regular Lead">Regular Lead</asp:ListItem> <asp:ListItem Value="Lead Other">Lead Other</asp:ListItem> </asp:DropDownList> </div>
Thanks