Hi
I want if value of DropDownList is Delivered then user must enter Date in Date of Delivery using JavaScript
<div class="form-group">
<label>Status</label> <span style="color: red">*</span>
<asp:DropDownList ID="ddlStatus" class="form-control" runat="server" required="true">
<asp:ListItem Value="">Select Status</asp:ListItem>
<asp:ListItem Value="Return Dispatched">Return Dispatched</asp:ListItem>
<asp:ListItem Value="Return Delivered">Return Delivered</asp:ListItem>
</div>