i currently have this
<%
DIM objConn
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath ("/goal2.mdb") & ";"
objConn.Open
%>
<%
DIM objRS
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open "Goal2", objConn, adOpenForwardOnly, adLockOptimistic, adCmdTable
objRS.AddNew
objRS("Division")=Request.Form("Division")
objRS("First_Name")=Request.Form("First_Name")
objRS("Last_Name")=Request.Form("Last_Name")
objRS("Supervisor")=Request.Form("Supervisor")
objRS("Client")=Request.Form("Client")
objRS("client_Type")=Request.Form("Client_Type")
objRS("eicl")=Request.Form("eicl")
objRS.update
objRS.Close
Set objRS=Nothing
objConn.Close
Set objConn=Nothing
%>
<%
Response.Write("<b>Thank you for submitting your Building Intense Customer Loyalty entry!</b>")
%>
</br>
<tr>
To get back to the intranet click <a href="
target="">Suffolk Intranet</a></td>
</tr>
and i would like the text to write on the same page as it says "Thank you for submitting your entry" if at all possible