modalpopextender でパネルを作成しましたが、パネル内のボタンをクリックするとパネルが消えてしまいます。
これは modalpopup の asp.net コードです。
<td class="style3">
<asp:Button ID="Button5" runat="server" style="background-color: #FFFFFF" />
<asp:ModalPopupExtender ID="answer" runat="server" DynamicServicePath=""
Enabled="True" TargetControlID="Button5" PopupControlID="Panel1" CancelControlID="Button3" >
</asp:ModalPopupExtender>
</td>
これは、データベースにデータを挿入し、modalpopup パネルを表示するための asp.net です。
string sql = "insert into questions (id,quest,mark) values (@id,@quest,@mark);select scope_identity();";
SqlCommand x = new SqlCommand(sql, con);
x.Parameters.AddWithValue("@id", Session["exam"].ToString());
x.Parameters.AddWithValue("@quest", TextBox1.Text );
x.Parameters.AddWithValue("@mark", TextBox2.Text);
con.Open();
Session["quest"] = x.ExecuteScalar().ToString();
con.Close();
answer.Show();