⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 table1_cs.aspx

📁 一些标准控件的举例说明
💻 ASPX
字号:
<html>
<head>

    <script language="C#" runat="server">

        void Page_Load(Object sender, EventArgs e) {
        
            // Generate rows and cells
            
            int numrows = int.Parse(DropDown1.SelectedItem.Value);
            int numcells = int.Parse(DropDown2.SelectedItem.Value);
            
            for (int j=0; j<numrows; j++) {
            
                TableRow r = new TableRow();
                
                for (int i=0; i<numcells; i++) {
                    TableCell c = new TableCell();
                    c.Controls.Add(new LiteralControl("row " + j.ToString() + ", cell " + i.ToString()));
                    r.Cells.Add(c);
                }
                
                Table1.Rows.Add(r);
            }
        }

    </script>

</head>
<body>

    <h3><font face="Verdana">Table Example</font></h3>

    <form runat=server>

        <asp:Table id="Table1" Font-Names="Verdana" Font-Size="8pt" CellPadding=5 CellSpacing=0 BorderColor="black" BorderWidth="1" Gridlines="Both" runat="server"/>
        &nbsp;

        <p>
        Table rows:
        <asp:DropDownList id=DropDown1 runat="server">
            <asp:ListItem Value="1">1</asp:ListItem>
            <asp:ListItem Value="2">2</asp:ListItem>
            <asp:ListItem Value="3">3</asp:ListItem>
            <asp:ListItem Value="4">4</asp:ListItem>
        </asp:DropDownList>

        <br>
        Table cells:
        <asp:DropDownList id=DropDown2 runat="server">
            <asp:ListItem Value="1">1</asp:ListItem>
            <asp:ListItem Value="2">2</asp:ListItem>
            <asp:ListItem Value="3">3</asp:ListItem>
            <asp:ListItem Value="4">4</asp:ListItem>
        </asp:DropDownList>

        <p>
        <asp:button ID="Button1" Text="Generate Table" runat=server/>
        
    </form>

</body>
</html>


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -