Note that there are some explanatory texts on larger screens.

plurals
  1. POModel Popup extender not working
    primarykey
    data
    text
    <p>I am working on a project and i want to popup a panel on a click of a button but its not working what could be the reason behind ..as i tried after updating the ajax toolkit again its not working. </p> <p>Please give me a solution for that. Here is what I have tried:</p> <pre><code> &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"&gt;&lt;/asp:ToolkitScriptManager&gt; &lt;asp:Button ID="btnShowPopupisbn" runat="server" style="display:none" /&gt; &lt;asp:ModalPopupExtender ID="ModalPopupExtender1" runat="server" TargetControlID="btnShowPopupisbn" PopupControlID="pnl_isbn" CancelControlID="btnCancel" BackgroundCssClass="modalBackground" PopupDragHandleControlID="pnlpopup"&gt;&lt;/asp:ModalPopupExtender&gt; &lt;asp:Panel ID="pnl_isbn" runat="server" Visible="False" width="400px"CssClass="color"&gt; &lt;asp:Label ID="lbl_isbn" runat="server" Text="ISBN " ForeColor="Black"&gt;&lt;/asp:Label&gt; &lt;asp:TextBox ID="txt_isbn" runat="server" ValidationGroup="b" AutoPostBack="true"&gt;&lt;/asp:TextBox&gt; &lt;asp:Label ID="lbl_booktwoid" runat="server" ForeColor="Red" Text="booktwoid" Visible="False"&gt;&lt;/asp:Label&gt; &lt;asp:Label ID="lbl_conditionisbn" runat="server" ForeColor="Black" Text="Condition"&gt;&lt;/asp:Label&gt; &lt;asp:DropDownList ID="drp_con" runat="server" Width="120px" ValidationGroup="b"&gt;&lt;/asp:DropDownList&gt; &lt;asp:Button ID="btn_isbnnumber" runat="server" Text="Add ISBN" CssClass="blue button" ValidationGroup="b"/&gt;&lt;/asp:Panel&gt; &lt;/div&gt; &lt;asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button"/&gt; &lt;/form&gt; </code></pre> <p>cs code on button click:</p> <pre><code> protected void Button1_Click(object sender, EventArgs e) { pnl_isbn.Visible = true; ModalPopupExtender1.Show(); } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload