<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="QMOnline.FixtureET.WebForm1" %> <!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"> <asp:Table ID="Table1" runat="server" Gridlines="Both" BorderWidth="1" BorderColor="black" CellSpacing="0" CellPadding="5" Font-Size="8pt" Font-Names="Verdana"> <asp:TableRow ID="TableRow1" runat="server"> <asp:TableCell ID="TableCell1" runat="server"> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> </asp:TableCell> <asp:TableCell ID="TableCell2" runat="server"> <asp:Table ID="Table2" runat="server"> </asp:Table> </asp:TableCell> </asp:TableRow> </asp:Table> <asp:Button ID="Button1" runat="server" Text="Button1" onclick="Button1_Click" /> <asp:Button ID="Button2" runat="server" onclick="Button2_Click" Text="Button2" /> </form> </body> </html>
using System; using System.Data; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; namespace QMOnline.FixtureET { public partial class WebForm1 : System.Web.UI.Page { //Table T2 = new Table(); protected void Page_Load(object sender, EventArgs e) { } protected void ShowTable() { int numrows; int numcells; int i = 0; int j = 0; TableRow r; TableCell c; Label lb; TextBox tb; // Generate rows and cells numrows = 2; numcells = 2; for (j = 0; j <= numrows - 1; j++) { r = new TableRow(); c = new TableCell(); lb = new Label(); lb.ID = "lb" + j; lb.Text = "Label" + j; c.Controls.Add(lb); r.Cells.Add(c); c = new TableCell(); tb = new TextBox(); tb.ID = "tb" + j; tb.Text = "TextBox" + j; c.Controls.Add(tb); r.Cells.Add(c); Table2.Rows.Add(r); } } protected void ShowTableDetial() { Response.Write(Table2.Rows.Count + "<br>"); //Response.Write(((TextBox)Table1.FindControl("tb1")).Text); //Response.Write(((TextBox)Table1.Rows[0].FindControl("tb1")).Text); } protected void Button1_Click(object sender, EventArgs e) { ShowTable(); } protected void Button2_Click(object sender, EventArgs e) { ShowTableDetial(); } } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง