我在提交表单后尝试显示"Thank you for your message"
消息。它有效,但页面刷新,所以我试图使用UpdatePanel而不仅仅是Panel。实际表格仍在Panel中。 "thank you message"
位于UpdatePanel中。
这是我的代码:
<asp:UpdatePanel runat="server" ID="pnlThankYouMessage" Visible="false">
<ContentTemplate>
<asp:Label ID="thankYou" runat="server"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
这就是我在提交按钮上的Onclick方法上的内容:
pnlFormFields.Visible = false;
pnlThankYouMessage.Visible = true;
thankYou.Text = "Thank You for your inquiry.";