שלח תשובה

זירת השאלות

554
צפיות
1
תשובות

עדכון פרטים

,‏ 12 בנובמבר, 2007

שלום
אני בונה אתר בשפת ASP + VBScript
המשתמש נרשם לאתר ופרטיו נשמרים באקסס
רציתי לשאול אייך אני בונה  דף שמאפשר למשתמש לעדכן את פרטיו
תודה

תגיות:

1 תשובות

  1. shlomolol הגיב:

    ככה


    <% @Language=VBScript%>
    <% Option Explicit %>
    <html>
    <head><title>Login Here</title></head>
    <body>
    <%
    If request("error")="1" then
    response.write "Your username was not found in our database<br>"
    End if
    If request("error")="2" then
    response.write "Your password did not match<br>"
    End if
    If request("error")="3" then
    response.write "You must supply both a username and password<br>"
    End if
    %>
    Please use your username and password to login to our secure area.<br>
    <form method="post" action="verify.asp">
    Username: <input type="text" name="username"><br>
    Password: <input type="text" name="password"><br>
    <input type="submit" name="submit" value="submit">
    </form>
    </body></html>

שלח תשובה