网站登陆问题
以前为了方便我做了一个自己的登陆窗口,可以剩下输入密码的功夫。登陆后,跳转到官方网站,以前people258是asp做的
我用asp
<form name="aspnetForm" method="post" action="http://hr.people258.com/Login.asp" id="aspnetForm">
<INPUT name="ctl00$ContentPlaceHolder1$tbUserName" id="ctl00_ContentPlaceHolder1_tbUserName" value="***"><input name="ctl00$ContentPlaceHolder1$tbPass" id="ctl00_ContentPlaceHolder1_tbPass" value="***"><input type="submit" name="Submit" value="提交"></form>
就可以了。
现在改成.net的了。如下地址:
http://hr.people258.com/Login.aspx
如果我要自己做一个独立的登陆窗口,要怎么实现?
应该是.net机制的关系,原先这样对应地址后好像是行不通了,有哪位大侠,知道怎么实现,请赐教!!
------解决方案--------------------
就写在一个aspx里面自己看看
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
//就用你所知道的方法 重定向
//只是Test 所以胡乱写个测试code
Response.Redirect(TextBox1.Text);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server" target="_blank"><!--既然有了ruant="server"那么action是毫无意义的所以不写 打开新窗口-->
<div>
<asp:TextBox ID="TextBox1" Text="http://www.baidu.com" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /></div>
</form>
</body>
</html>