เอา username กับ Password นำไปเป็นเงือนไขของ select สิครับ
เช่น SELECT * FROM ชื่อตาราง where ฟิวด์='ตัวแปรของusername' and ฟิวด์='ตัวแปรของPassword'
ถ้า username กับ Password ถูก จะมีค่า num ครับ
Date :
11 ม.ค. 2550 18:12:15
By :
เฮง
No. 2
Guest
ภาษาเป็น asp ก็ วิธีที่ง่ายที่สุดก็คือ
ส่งค่า form เป็น method ="post" ไปที่หน้า verify.asp
สร้าง file ที่ชื่อ verify.asp ขึ้นมาก่อน
set con = server.CreateObject(adodb.connection)
con.open "provider = microsoft.jet.oledb.4.0 ; Data source= path ฐานข้อมูลเด้อ"
set rs = server.CreateObject(adodb.recordset)
ตรงนี้สำคัญ ..
rs.open("select * from ชื่อตารางฐานข้อมูล where ฟิวด์username like request.form("ชื่อ textbox username") and ฟิวด์password like request.form("ชื่อtextbox password")"),con,1,3
if (rs not.eof) and (rs not.bof) then
response.redirect("หน้าต่อไป")
else
response.redirect("กลับหน้า login")
end if
Date :
12 ม.ค. 2550 15:04:38
By :
แควน
No. 3
Guest
ขอบคุณค่ะ ..
แล้วเราเขียนโค๊ดนี้ไว้ที่ cmd ชื่อ log in ใช่ไหม หรือว่าเขียนที่ Form load ค่ะ