Hello
I have the following as part of my Contact.aspx.vb file:
in Visual Studio (2013):
When the user completes the form fields in my Contact.aspx page which has this:
and presses 'Send', the 'Thank you message appears. Without redirecting the user to another page, how could I
personalise the 'Thank you' messsage, so that it says 'Thank you + personal name' (the name typed in the form's name field), please?
Thank you.
I have the following as part of my Contact.aspx.vb file:
Code:
Protected Sub SendEmail_Click(sender As Object, e As System.EventArgs)
Code:
pnlFormFields.Visible = False pnlThankYouMessage.Visible = True End Sub
Code:
<asp:Panel ID="pnlThankYouMessage" runat="server" CssClass="panel" Visible="False"> Thank you. Your message has been sent. </asp:Panel>
personalise the 'Thank you' messsage, so that it says 'Thank you + personal name' (the name typed in the form's name field), please?
Thank you.