User876561910 posted
This “was” working and now it’s not.
Can you see any problems with it.
This is the section which has stopped working
Response.Redirect("NextPage.aspx?Item1=" + txtBox1.Text + "&Item2=" + txtBox2.Text)
This is part of VB which loads details into a database then send the users to the next page
The loading into the database is working fine - it's just not passing the value to the next page
Like this
<script runat="server" language="vbscript" type="text/vb">
Protected Sub FormView1_ItemInserted(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.FormViewInsertedEventArgs) Handles FormView1.ItemInserted
Response.Redirect("NextPage.aspx?Item1=" + txtBox1.Text + "&Item2=" + txtBox2.Text)
End Sub