Hi
I have below Aspx Page & want to show it in Modal Popup
<head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div class="row"> <div class="col-lg-3 col-md-6 col-sm-12"> <div class="form-group"> <label>Participant</label> <span style="color: red">*</span> <asp:DropDownList ID="ddlParticipant" class="form-control" runat="server" AutoPostBack="true" OnSelectedIndexChanged="Participants_Changed"> <asp:ListItem Value="">Select Participant</asp:ListItem> </asp:DropDownList> </div> </div> </div> <div class="row"> <div class="col-lg-3 col-md-6 col-sm-12"> <div class="form-group"> <label>Nominees</label> <span style="color: red">*</span> <asp:ListBox ID="lstNominees" runat="server" data-placeholder="Choose Nominees" class="form-control multiselect-full-featured" multiple="multiple" SelectionMode="Multiple" data-fouc=""></asp:ListBox> </div> </div> </div> </form> </body> </html>
Thanks