I have a problem with updating text in a database
I have a asp page with text edit box, these let me see the text from the database. I wan't to change this text, but with the asp page which this text must change doesn't work it.
This is the code what's wrong ? Can somebody help me please
<%
dim irrecordset
dim nextSQL
set irrecordset = server.createobject("ADODB.recordset")
nextSQL ="UPDATE indexconsument SET blok1 ='"&Request("blok1")&"' WHERE indexnr="&Request("indexnr")&""
call irrecordset.open (nextSQL, strCon)
%>