צפיות
תשובות
שגאה 405. מה היא ומה היא רוצה ממני?
אני מנסה ליצור התחברות לפאנל ניהול שאני בונה.
יצרתי קוד כזה בדף:
<center>
<h1>התחברות לפאנל הניהול</h1>
<hr>
<%
if request.form("admin_username")="admin" and request.form("admin_pass")="z5" then
session("admin")="good"
response.redirect("admin_panel.asp")
else session("admin")="bad"
end if
%>
<form method="post">
<br>
<h5>:הכנס שם משתמש וסיסמה</h5>
<input type="text" dir="rtl" name="admin_username">
<br>
<input type="password" dir="rtl" name="admin_pass">
<br><br>
<input type="submit" name="send" value=" שלח ">
<input type="reset" name="reset" value=" נקה ">
</form>
</center>
אני מנסה לשלוח את המשתמש לדף admin_panel.asp, אבל פתאום מופיעה לי שגיאת שרת 405:
HTTP Error 405
405 Method Not Allowed
The method specified in the Request Line is not allowed for the resource identified by the request. Please ensure that you have the proper MIME type set up for the resource you are requesting.
Please contact the server's administrator if this problem persists.
מה זה ואיך אפשר לפתור זאת?
4 תשובות
ישר את הקוד לשמאל.
אוקיי…
הקוד שלי
<center>
<h1>התחברות לפאנל הניהול</h1>
<hr>
<%
if request.form("admin_username")="admin" and request.form("admin_pass")="z5" then
session("admin")="good"
response.redirect("admin_panel.asp")
else session("admin")="bad"
end if
%>
<form method="post">
<br>
<h5>:הכנס שם משתמש וסיסמה</h5>
<input type="text" dir="rtl" name="admin_username">
<br>
<input type="password" dir="rtl" name="admin_pass">
<br><br>
<input type="submit" name="send" value=" שלח ">
<input type="reset" name="reset" value=" נקה ">
</form>
</center>
הודעת השיאה של השרת
HTTP Error 405
405 Method Not Allowed
The method specified in the Request Line is not allowed for the resource identified by the request. Please ensure that you have the proper MIME type set up for the resource you are requesting.
Please contact the server's administrator if this problem persists.
על איזו שורה מצביעה השגיאה?
הודעות שגיאה ידידותיות
מבוטלות אצלך במחשב ?