; Response.Write("ok\n");
}
else
{
Response.Write("fail\n");
}
}
}
5,新建一名为loginIndex.htm的静态页面,作为用户登录之后的首页
其body标签代码如下
<body>
<span id ="username"> </span>
</body>
6,在loginIndex.htm页面引入loginCookie.js文件
<script type ="text/javascript" src ="loginCookies.js" ></script>
7,写loginIdex.htm页面的js代码,放在head标签之间
<script type ="text/javascript" >
window.onload = function ()
{
if(GetCookie(''user_name'')==null || GetCookie(''user_pwd'')==null)//如果没有登录,而是直接在网页中输入网址的
{
alert(''你还没有登录!\n返回到登陆页面。'');
window.navigate("login.htm");
}
else
{
var uname = GetCookie(''user_name'');
document.getElementById (''username'').innerHTML ="欢迎你: " + uname + " <a href=''#'' onclick = ''off()''>注销</a>";//提供"注销"按钮
}
}
function off()//注销事件
{
if (window.confirm("你真要注销吗?"))
{
Delcookie("user_name");
&nb