Hi Phoebe,
I write a message to Eric and almost forget to answer.
I do not see the problem, in the click event from that image button in your
form you can set a response.redirect I thought, what is the problem with
that?
I give you a sample I made once.
Cor
Webpage 1
\\\\
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Me.Label1.Text = "I am page 1"
End Sub
Private Sub ImageButton1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles ImageButton1.Click
Response.Redirect("
http://localhost/WebApplication1/WebForm2.aspx")
End Sub
///
Webpage2
\\\
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Me.Label1.Text = "I am page 2"
End Sub
Private Sub ImageButton1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles ImageButton1.Click
Response.Redirect("
http://localhost/WebApplication1/WebForm1.aspx")
End Sub
///