Recent content by HighFlyer

  1. H

    Problem With Cookies

    Hi guys! I was wondering what is the difference between Response.cookies and Document.cookies? And also i'm have problem understanding this code: <INPUT TYPE="button" NAME="<% =RS("code_no") %>add" VALUE="<%=txt_buy_now%>" class="button" onclick="top.center.cart.addItem('<% =RS("item")...
  2. H

    Count Problem

    I've tried the code but a new error appears. Error Type: Microsoft JET Database Engine (0x80040E07) Data type mismatch in criteria expression. /newasiasalsa/dstudentcourse2.asp, line 17 Line 17 is rs.Open "SELECT COUNT(*) as males FROM studentOnCourse WHERE courseID = "& courseID &" AND...
  3. H

    Count Problem

    hi, thanx for your help but i was thinking if i could save the rs"males" into a variable? instead of doing a "><% Response.Write (rs("males")) %>, i wanna do a "><% Response.Write (males) %> how can i do it?
  4. H

    Count Problem

    Hi guys, i'm having this problem with COUNT. Error Message : Error Type: Microsoft VBScript compilation (0x800A0401) Expected end of statement /newasiasalsa/dstudentcourse2.asp, line 17, column 28 rs.Open "SELECT COUNT(*)as "males" FROM studentOnCourse WHERE courseID = "& courseID &" AND...
  5. H

    Syntax error in UPDATE statement.

    ThanX alot for your help! : o )
  6. H

    Syntax error in UPDATE statement.

    thanx alot! i've seen the codes you have `` on my variables. actually i'm quite confused when to use "" , `` and ''
  7. H

    Syntax error in UPDATE statement.

    my file. 1st page testviewusers.asp -> modify.asp -> modifydata.asp
  8. H

    Syntax error in UPDATE statement.

    Still the same error....
  9. H

    Syntax error in UPDATE statement.

    erm... guys do you need my original file? i've been trying to solve this problem for weeks but still cant work. thanx alot!
  10. H

    Syntax error in UPDATE statement.

    Hi again, i've tried the code you provide but i have this same error. Error Type: Microsoft JET Database Engine (0x80040E14) Syntax error in UPDATE statement. /alle_new/modifydata.asp, line 17
  11. H

    Syntax error in UPDATE statement.

    hi guys this are the codes for the form page this page will call for the asp page i posted above. thanx for all your help! <% id = Request.QueryString("id") set conn = server.CreateObject ("ADODB.Connection") conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & server.MapPath...
  12. H

    Syntax error in UPDATE statement.

    Hi, I'm kinda newbie don't seems to understand can you please give me some examples? thanx alot
  13. H

    Syntax error in UPDATE statement.

    Hi, I tried this but same error...
  14. H

    Syntax error in UPDATE statement.

    Hi guys, i'm having this error... Error Type: Microsoft JET Database Engine (0x80040E14) Syntax error in UPDATE statement. /alle_new/modifydata.asp, line 14 below is my codes: <% username = Request.Form("username") password = Request.Form("password") firstName =...
Back
Top