Guest User

Untitled

a guest
Sep 17th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Classic ASP WebForm Generator
  2. <%
  3. username = Request.Form("input-username")
  4. password = Request.Form("input-password")
  5. %>
  6.  
  7. <%
  8. Rs.AddNew()
  9. Rs("username") = username
  10. Rs("password") = password
  11. Rs.Update()
  12. %>
  13.  
  14. <%
  15. for each item in Request.Form
  16. Response.Write item & "=" & Request.Form(item) & "<br />"
  17. next
  18. %>
Add Comment
Please, Sign In to add comment