您的位置:首页 > 编程语言 > ASP

asp.net标准控件之标签控件

2010-06-12 15:32 148 查看
2、标签控件
网页文件:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="login.aspx.cs" Inherits="demo_login" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>无标题页</title>
</head>
<body >
    <form id="form1" runat="server">
   <table border="0" cellpadding="0" cellspacing="0"
         style="height: 104px">
   <tr>
   <td  align="right" style=" width:50%">
       <asp:Label ID="lbusername" runat="server" Text="用户名:"></asp:Label>
   </td>
   <td align="left">
       <asp:TextBox ID="tbusername" runat="server">请在这里用户名!</asp:TextBox>
   </td>
   </tr>
    <tr>
   <td  align="right" style=" width:50%">
       <asp:Label ID="lbpassword" runat="server" Text="密  码:"></asp:Label>
   </td>
   <td align="left">
       <asp:TextBox ID="tbpassword" runat="server" TextMode="Password">请在这里输入密码!</asp:TextBox>
   </td>
   </tr>
   </table>  
    </form>
</body>
</html>

类文件:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class demo_TextBoxDemo : System.Web.UI.Page
{
    protected void Page_Load(object sender, Ev
4000
entArgs e)
    {

    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        Response.Write("您输入的密码是:"+TextBox1.Text);
    }
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息