Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能在一些 html 页面上做一个不使用数据库的简单 ASP登录系统?喜欢脚本,谢谢。
You'd assign a cookie server-side upon successful login, then check for the presence of the cookie on each request.
You could use an array for userids and passwords instead of a database on the server for account look-up.
在http://www.4guysfromrolla.com/webtech/050499-1.shtml查看此示例代码