HOME > ASP > ASP Forum > จะ logon_user ใหม่ได้ยังไงครับ asp เขียน asp เกี่ยวกับการ upload ครับ เรียบร้อยแล้วก็มาถึงเรื่องการลบ ก็เกิดการ permission denied ขึ้นมา
จะ logon_user ใหม่ได้ยังไงครับ asp เขียน asp เกี่ยวกับการ upload ครับ เรียบร้อยแล้วก็มาถึงเรื่องการลบ ก็เกิดการ permission denied ขึ้นมา
If IsEmpty(UserID) Or IsNull(UserID) Or UserID="" Then
'we need authentication -- is the browser authenticated?
UserID=Request.ServerVariables("LOGON_USER")
If IsNull(UserID) Then
'nope. reply with a 401
Response.Status="401 Access Denied"
Response.Status="401 Access Denied"
response.write "<br><br><br><b> Sorry, but your username and password combination was incorrect."
response.write "<br><br> Press your refresh button to try again.</b>"
Response.End
Else
'yes, they're authenticated
'Translate to DOMAIN/USER format, adding default domain if necessary
UserID=Replace(UserID, "\", "/")
If InStr(UserID, "/")<1 Then
UserID="defaultdomain/" & UserID
End If
'now tell the session about it
Session("UserID")=UserID
End If
End If
-------------------------
ครั้งแรกเลยก็มี pop up ให้ใส่ user และ password
ทำไปทำมา test มา test ไป ลบ file ลบ folder ได้ ยังเขียนไม่เสร็จดี Request.ServerVariables("LOGON_USER") กลายเป็น "" (ว่าง)ไปซะงั้น
แล้วก็ทำยังไงก็ pop up ที่ให้ใส่ user ก็ไม่ขึ้นมาอีกเลย
>>>>>>>>>ทำยังไงถึงจะใส่ค่า Request.ServerVariables("LOGON_USER") ได้อีกครับ อยากจะสร้าง form ต้องกำหนดค่า form ยังไงบ้างครับ ขอบคุณครับ