the following script i am using to update records to a Access database,
********************************************
<HTML>
<Head>
<Title>K.R.App web design</Title>
</Head>
<%
set conn = Server.CreateObject("Adodb.connection"
conn.Open "customeraccounts.mdb"
query = "UPDATE IPdetails SET Address=" & Request.QueryString("Address"
& " WHERE Autonumber= " & Request.QueryString("Autonumber""
conn.Execute(query)
Response.write "Data updated"
%>
<Body>
</Body>
</HTML>
*****************************************************
the parameters are sent from the previous page, to this one, however, whenever i try to run this script it comes up with, error on page......
any ideas
thanks
********************************************
<HTML>
<Head>
<Title>K.R.App web design</Title>
</Head>
<%
set conn = Server.CreateObject("Adodb.connection"
conn.Open "customeraccounts.mdb"
query = "UPDATE IPdetails SET Address=" & Request.QueryString("Address"
& " WHERE Autonumber= " & Request.QueryString("Autonumber""
conn.Execute(query)
Response.write "Data updated"
%>
<Body>
</Body>
</HTML>
*****************************************************
the parameters are sent from the previous page, to this one, however, whenever i try to run this script it comes up with, error on page......
any ideas
thanks