hi,
can anybody put me through on how to use asp to submit data into the date base.
thanks and God bless
can anybody put me through on how to use asp to submit data into the date base.
thanks and God bless
strConn1="PROVIDER=SQLOLEDB;SERVER=servername;UID=userid;PWD=pass;DATABASE=dbname"
Set objConn1= Server.CreateObject("ADODB.Connection")
objConn1.Open strConn1
strSQL1 = "insert into table_name set Credit_Notes="Credit_Notes", Last_Update_By="Last_Update_By
objConn1.Execute(strSQL1)
Comment