Search results

  1. A

    Syntax Error in ASP?

    You are right about the string. It would have given error while executing and not compiling.Actually I am in bad habit of seeing things ahead :) So the only potential error left is msg_list.add "db_insert_edit_Users","The database insert was successful." end if Since "end if" is on the...
  2. A

    Syntax Error in ASP?

    Hi, I think it is missing bracket causing the problem.Try this sql = "INSERT INTO Users(user_name,password) VALUES (" & to_sql(user_name, "text") & "," & to_sql(password, "text") & ")" Mainly after the "Values(" the bracket is not closed. Since the compiler could not find the end of...
Back
Top