ASP - Access - Expected end of statement
nogen der kan fortælle hvad der mangler/er forkert i denne sætning:strSQL = "Insert into Ordre ("
strSQL = strSQL & "Kunde, "
strSQL = strSQL & "Vare, "
strSQL = strSQL & "Antal) "
strSQL = strSQL & "values( "
strSQL = strSQL & "'" & Session("strID") & "', "
strSQL = strSQL & "'" & replace(request.querystring("p"),"'","''") & "', "
strSQL = strSQL & "'" & cint(request.querystring("stk"))" & "') "
får følgende fejl:
Error Type:
Microsoft VBScript compilation (0x800A0401)
Expected end of statement
/xxxx/xxxx.asp, line 35, column 56
strSQL = strSQL & "'" & cint(request.querystring("stk"))" & "') "
På forhånd tak
//Per