i have already checked that, i do not see it on my page and have checked the file
here is my code:<%@Language=VBScript%>
<%Option Explicit%>
<!--#INCLUDE FILE="adovbs.inc"-->
<%
Dim strConnect
Dim objRS, PropNum, SalesEng
Dim objConn
Dim strSQL
%>
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Adding a new record</title>
</head>
<body bgcolor="#DA70D6">
<%
PropNum = Request("PropNumb"

SalesEng= Request("SalesEngi"
Set objConn = Server.CreateObject ("ADODB.Connection"

objConn.Open "Provider=SQLOLEDB;Server=BURIADATA2EDCGE;Database=SCQUOTES;User ID=sa;PWD=;"
Set objRS= Server.CreateObject ("ADODB.Recordset"

objRS.Open strSQL, objConn, adOpenKeyset, adLockPessimistic, adCmdText
strSQL = "Select * FROM Quotes"
objRS.AddNew
objRS.Fields("text_field"

= CStr(SalesEng)
objRS.Fields("integer_field"

= CInt(PropNum)
objRS.UPDATE
Response.Write "You've successfully added a new record:<BR> "&_
"Prop Number = '"& PropNum & "'<BR>"&_
"Sales Engineer = '"& SalesEng
objConn.Close
objRS.Close
Set objRS= Nothing
Set objConn=Nothing
%></body>
</html>