<% Response.Buffer = True Dim iFName ' The First Name Dim iLName ' The Last name ' Get the values passed in by the other script iFName = Trim(CStr(Request.form("fname"))) iLName = Trim(CStr(Request.form("lname"))) If iFName = "autoshowtv" Then Session("iFname") = iFName End if If iLName = "autoshowtv1" Then Session("iLname") = iLName End If ' Bounce users back to the display page Response.Redirect("administration.asp") %>