Asp.net Form 动态产生表格核心后台代码
前端参考代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <link href="htzd.css" rel="stylesheet" /> <title></title> </head> <body> <asp:Table ID="Table1" runat="server"></asp:Table> <br /> <hr /> <form id="form1" runat="server"> <div> Row Num:<asp:TextBox ID="RowNum" style="color:red" runat="server" Text="0"></asp:TextBox> <br /> Col Num:<asp:TextBox ID="ColNum" runat="server" Text="0" ForeColor="Red"></asp:TextBox> <br /> <br /> <asp:Button ID="btnProTable" runat="server" Text="产生表格" /> </div> </form> </body> </html>
参考代码:
protected void Page_Load(object sender, EventArgs e) { if (this.IsPostBack == true) { int row = int.Parse(Request.Form["RowNum"]); int col = int.Parse(Request.Form["ColNum"]); for (int i = 0; i < row; i++) { TableRow tr = new TableRow(); for (int j = 0; j < col; j++) { TableCell td = new TableCell(); tr.Cells.Add(td); td.Text =((i+1)*(j+1)).ToString(); } Table1.Rows.Add(tr); } } }
htzd.css参考文件:
table{ width:400px; box-shadow:5px 5px 5px grey; } td{ box-shadow:3px 3px 3px grey; padding-left:15px; }
相关推荐
Qc 2020-07-19
wcqwcq 2020-07-04
TONIYH 2020-06-11
yhginny 2020-04-20
nicepainkiller 2020-05-12
苦咖啡flask 2020-05-09
xinjing0 2020-05-08
Lius 2020-05-05
ajaxtony 2020-05-04
bcbeer 2020-04-23
sicceer 2020-04-20
cmsmdn 2020-02-18
longshengguoji 2020-02-13
ajaxtony 2020-02-03
ELEMENTS爱乐小超 2020-01-17
waterv 2020-01-01
xinjing0 2019-12-24