我自己的网站, asp 做的,在页面有一个判断,要求用户必须登录,下面这两个 session 为空时就说明没登录。
<%
if session("password")="" or session("user")="" then
response.end
end if
%>
我现在用 python 的 requests 实现了自动登录,但是应该怎么把 session 的值传过来呢?
<%
if session("password")="" or session("user")="" then
response.end
end if
%>
我现在用 python 的 requests 实现了自动登录,但是应该怎么把 session 的值传过来呢?