kornieme
01-26-2007, 01:55 PM
I have a web form that I have created and have it so it sends an email with the information, which is exactly what I want. However, I need for the onClick to not only send the form but redirect the page to a specic htm page, and I haven't been able to figure out how to do that exactly. Right now the page shows hidden label information but I need a redirect to the other page.
The button itself is coded:
<asp:button runat="server" id="btnSendFeedback" Text="Send"
OnClick="btnSendFeedback_Click" />
My Sub for the button is:
Sub btnSendFeedback_Click(sender as Object, e as EventArgs)
Not sure if the whole entire Sub information is needed, please let me know if that is the case, etc. Can someone help me figure out where and how to place the redirect?
The button itself is coded:
<asp:button runat="server" id="btnSendFeedback" Text="Send"
OnClick="btnSendFeedback_Click" />
My Sub for the button is:
Sub btnSendFeedback_Click(sender as Object, e as EventArgs)
Not sure if the whole entire Sub information is needed, please let me know if that is the case, etc. Can someone help me figure out where and how to place the redirect?