胶衣番号 皮衣:求网页登陆按钮代码

来源:百度文库 编辑:神马品牌网 时间:2024/05/03 06:30:38
我想要个能登陆有帐号密码网页的网页按钮代码。按下就能登陆到那个网页,免按帐号密码
比如: 我有个网易邮箱 ( 帐号 、 密码 就用“帐号”、密码“代替”) 怎么登陆, 说清楚、通俗些,我好菜
又如:登陆这个百度知道 的网页按钮代码
我要的不是带test框的网页代码.我只要个按钮代码,(就以百度知道来说)按下就能以我的帐号xa04密码****登陆百度.这样我将输入帐号xa04密码****的时间就节省了.也就是说任何人按下这个按钮都能进的去.代码多给点说明.我还要用到起他方面的

不是特别明白你的问题!不知道是不是下面这样的代码!
以下为test1.asp

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<body>
<form name="form" method="post" action="test2.asp">
<TR>
<TD><table width="100%" border="0" cellspacing="0" cellpadding="0">
</table>
<form name="form1" method="post" action="">
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center"><img src="img/newsico.gif" width="12" height="13">  留言专区</div></td>
</tr>
</table>
<table width="95%" border="0" align="center" cellpadding="4" cellspacing="1">
<tr>
<td width="24%" align="right"></td>
<td width="76%"></td>
</tr>
<tr>
<td width="24%" align="right">账号:</td>
<td width="76%"><font>
<input type="text" name="name" size="22" maxlength="36" style="font-size: 14px; width: 320; height: 19" class="smallInput">
</font></td>
</tr>
<tr>
<td align="right">密码:</td>
<td width="76%"><font>
<input type="password" name="pwd" size="22" maxlength="36" style="font-size: 14px; width: 320; height: 19" class="smallInput">
</font> </td>
</tr>
<tr>
<td width="24%" align="right"></td>
<td width="76%"><input type="submit" value="登陆" name="cmdOk">
 
<input type="reset" value="复位" name="cmdReset">
</td>
</tr>
</table>
</form>
</body>
</html>

一下为test2.asp

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Inc/syscode.asp" -->
<!--#include file="inc/Skin_CSS.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<body>
<%getName=request.Form("name")%><br>
<%getpassword=request.Form("pad")%><br>
<%response.Write("getName="+getname)%><br>/显示test1.asp中输入的名字
<%response.Write("getSomane="+getpassword)%><br>/显示test1.asp中输入的密码
</body>
</html>