基本的Web控件三

基本的Web控件用法一

 

ListBox控件

<div>
        <h1>ListBox控件</h1>
        学生列表:
        <br/>
        <asp:ListBox ID="ListBox1" runat="server" Height="100px" Width="200px" Font-Size="Large"
            onselectedindexchanged="ListBox1_SelectedIndexChanged" AutoPostBack="true" >
            <asp:ListItem>张勇</asp:ListItem>
            <asp:ListItem>张力</asp:ListItem>
            <asp:ListItem>张译</asp:ListItem>
        </asp:ListBox>
        <br/>
        <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
        <hr/>
        <hr/>
</div>
protected void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
	this.Label1.Text = "你选择的学生是:" + 	this.ListBox1.SelectedItem.Text.ToString();
}

            运行结果:

DropDownList控件

<div>
        <h1>DropDownList控件</h1>
        学生列表:
        <br/>
        <asp:DropDownList ID="DropDownList1" Font-Size="Large" runat="server" AutoPostBack="true" Width="146px"                             OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
            <asp:ListItem>张宇</asp:ListItem>
            <asp:ListItem>张容</asp:ListItem>
            <asp:ListItem>张度</asp:ListItem>
        </asp:DropDownList>
        <br/>
        <asp:Label ID="Label2" runat="server"></asp:Label>
        <hr/>
        <hr/>
</div>
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
	this.Label2.Text="你选择的学生是:" 	+this.DropDownList1.SelectedItem.Text.ToString();
}

            运行结果:

CheckBoxList控件

<div>
        <h1>CheckBoxList控件</h1>
        <asp:CheckBoxList ID="CheckBoxList1" runat="server" OnSelectedIndexChanged="CheckBoxList1_SelectedIndexChanged"                   AutoPostBack="true" Width="180px">
            <asp:ListItem>苹果</asp:ListItem>
            <asp:ListItem>香蕉</asp:ListItem>
            <asp:ListItem>桔子</asp:ListItem>
            <asp:ListItem>桂圆</asp:ListItem>
            <asp:ListItem>葡萄</asp:ListItem>
        </asp:CheckBoxList>
        <br/>
        <asp:Label ID="Label3" runat="server"></asp:Label>
        <hr/>
        <hr/>
</div>
protected void CheckBoxList1_SelectedIndexChanged(object sender, EventArgs e)
{
        this.Label3.Text = "你的选择是:" + this.CheckBoxList1.SelectedItem.Text.ToString();
}

            运行结果:

RadioButtonList控件

<div>
        <h1>RadioButtonList控件</h1>
        <asp:RadioButtonList ID="RadioButtonList1" runat="server" Width="180px">
            <asp:ListItem>乒乓球</asp:ListItem>
            <asp:ListItem>保龄球</asp:ListItem>
            <asp:ListItem>羽毛球</asp:ListItem>
        </asp:RadioButtonList>
        <hr/>
        <hr/>
</div>

            运行结果:

BulletedList控件

<div>
        <h1>BulletedList控件</h1>
        <asp:BulletedList ID="BulletedList1" runat="server" BulletStyle="Square">
            <asp:ListItem>鸡</asp:ListItem>
            <asp:ListItem>鸭</asp:ListItem>
            <asp:ListItem>猪</asp:ListItem>
            <asp:ListItem>狗</asp:ListItem>
        </asp:BulletedList>
        <hr/>
        <hr/>
</div>

运行结果:

Table控件

<div>
        <h1>Table控件</h1>
        <asp:Table ID="Table1" runat="server">
            <asp:TableRow runat="server">
                <asp:TableCell runat="server">第一行第一列</asp:TableCell>
                <asp:TableCell ID="TableCell1" runat="server">第一行第二列</asp:TableCell>
                <asp:TableCell ID="TableCell2" runat="server">第一行第三列</asp:TableCell>
                <asp:TableCell ID="TableCell3" runat="server">第一行第四列</asp:TableCell>
            </asp:TableRow>
            <asp:TableRow ID="TableRow1" runat="server">
                <asp:TableCell ID="TableCell4" runat="server">第二行第一列</asp:TableCell>
                <asp:TableCell ID="TableCell5" runat="server">第二行第一列</asp:TableCell>
                <asp:TableCell ID="TableCell6" runat="server">第二行第二列</asp:TableCell>
                <asp:TableCell ID="TableCell7" runat="server">第二行第三列</asp:TableCell>
            </asp:TableRow>
        </asp:Table>
        <hr/>
        <hr/>
</div>

            运行结果:

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值