日期:2014-05-17  浏览次数:20527 次

要做在ASP.net(C#)里做各种常用的邮箱快速登陆
要做在ASP.net(C#)里做各种常用的邮箱快速登陆,请问有什么好的实现办法,有代码吗?给我下,网络上找到JS代码都不行用。

------解决方案--------------------
路过帮顶
------解决方案--------------------
邮箱快速登陆代码
该文章转载自德仔工作室:http://www.dezai.cn/Article_Show.asp?ArticleID=32157
------解决方案--------------------
看一下各邮箱登录的Html代码就清楚了,比如163的
HTML code

<html>
<head>
    <title>136邮箱登录</title>
</head>
<body>
    <form id="login" name="login" method="post" action="https://reg.163.com/logins.jsp"
        target="_self" onsubmit="return loginSubmit(this);">
        <div class="s1">
            <label for="userName">
                用户名</label></div>
        <div class="s2">
            <input id="userName" name="username" /></div>
        <div class="s1">
            <label for="password">
                密码</label></div>
        <div class="s2">
            <input id="password" name="password" type="password" /></div>
        <input type="submit" value="登录" />
    </form>
</body>
</html>

------解决方案--------------------
参考hao123...
------解决方案--------------------
copy hao123.com首页HTML就可
------解决方案--------------------