I actually used Response.Redirect("PrayerRequests.aspx") in the web page that uses the form. It redirects to the page, but the new information is not displayed unless you refresh the web page.
My code for this was included in the following sub procedure:
'---------------------------------------------
' name: DisplayResults()
'---------------------------------------------
Sub DisplayResults()
Dim strDisplay as string
'We don't want to show the user the form again
frmPrayerRequests.Visible = False
'Show the new page heading for the postback page
lblResultsTitle.Visible = True
lblResultsTitle.Text = "<h3>Thank you for adding your prayer request! </h3>"
Response.Redirect("PrayerRequests.aspx")
End Sub
Page_Load() sub procedure calls DisplayResults()