+ -
当前位置:首页 → 问答吧 → ASP数据库,数据源是怎么回事

ASP数据库,数据源是怎么回事

时间:2011-10-10

来源:互联网

ASP初学。登陆界面与数据库的链接是怎么回事,泪奔无师傅。
<form name="form" method="post" action="test_002.asp">
用户名:<input name="name" type="text"id="name">
<p>电子信箱:<input name="email"type="text"id="email"></p>
<p>
<input type="submit" name="submit" value="提交">
<input type="reset" name="submit2" value="重置">
</p>
</form>
用户名和密码怎么链接数据库呢

作者: win7583362   发布时间: 2011-10-10

在web.config里面配置数据库的链接

作者: sunlifei   发布时间: 2011-10-10

login.aspx页面中代码HTML code
<body>
    <form id="form1" runat="server">
    <div style="width:1024px; height:650px; background-image:url(img/control/login.jpg); margin-left:auto; margin-right:auto;">
            <div style="position:relative; width:210px; height:106px; left: 542px; top: 289px;">
                <asp:TextBox ID="UserName" runat="server" Width="127px" style="position:relative; top:2px; left:75px;"></asp:TextBox>
                <asp:TextBox ID="PassWord" TextMode="Password" runat="server" Width="127px" style="position:relative; top:10px; left:75px;"></asp:TextBox>
                <asp:Button ID="lnk_Login" runat="server" Text="登录" Width="97px" Height="30px" CssClass="button" style="cursor:pointer; position:relative; top:32px; left:0px; outline:none" OnClick="lnk_Login_Click" />
                <input id="Reset" type="reset" value="取消" class="button" style="cursor:pointer; position:relative; top:33px; left:9px; outline:none" />
                <br />
                <asp:Label ID="FailInfo" runat="server" Text="" style="position:relative; top:40px; color:Red; font-size:13px;"></asp:Label>
            </div>
    </div>
    </form></body>


login.aspx.cs中代码
HTML code
protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void lnk_Login_Click(object sender, EventArgs e)
        {

            string un = UserName.Text.Trim();// == "" ? "xiaoyan.zhang" : UserName.Text.Trim();
            string pw = PassWord.Text.Trim();// == "" ? "1" : PassWord.Text.Trim();

             //处理登录信息
                
                    }

作者: sunlifei   发布时间: 2011-10-10

http://blog.sina.com.cn/s/blog_51c0c7620100d7mx.html

参考这里的代码

作者: sy_binbin   发布时间: 2011-10-10