web 2.0

ASP.NET(vb.net) & Table - asp:Table

ASP.NET(vb.net) & Table - asp:Table - asp:Table : Declares a table and allows you to manipulate it programmatically.

ShotDev Focus:
- ASP.NET(vb.net) & Table - asp:Table

ASP.NET(vb.net) & Table - asp:Table

Tag Control :

  1. <asp:Table id="Table1"  
  2. BackImageUrl="url"  
  3. CellSpacing="cellspacing"  
  4. CellPadding="cellpadding"  
  5. GridLines="None|Horizontal|Vertical|Both"  
  6. HorizontalAlign="Center|Justify|Left|NotSet|Right"  
  7. runat="server">  
  8.   
  9. <asp:TableRow>  
  10.   
  11. <asp:TableCell>  
  12. Cell text  
  13. </asp:TableCell>  
  14.   
  15. </asp:TableRow>  
  16.   
  17. </asp:Table>  

Example 1

Table1.aspx

  1. <%@ Page Language="VB" %>  
  2. <script runat="server">  
  3. Sub Page_Load(sender As Object,e As EventArgs)  
  4. Me.Label1.Text = "www.ShotDev.Com 1"  
  5. Me.Label2.Text = "www.ShotDev.Com 2"  
  6. Me.Label3.Text = "www.ShotDev.Com 3"  
  7. End Sub  
  8. </script>  
  9. <html>  
  10. <head>  
  11. <title>ShotDev.Com Tutorial</title>  
  12. </head>  
  13. <body>  
  14. <form runat="server">  
  15. <asp:Table id="MyTable" runat="server" cellspacing="0" cellpadding="5" border="1">  
  16. <asp:TableRow runat="server">  
  17. <asp:TableCell colspan="2" runat="server">  
  18. <asp:Label id="Label1" text="Label" runat="Server" />  
  19. </asp:TableCell>  
  20. </asp:TableRow>  
  21. <asp:TableRow runat="server">  
  22. <asp:TableCell runat="server">  
  23. <asp:Label id="Label2" text="Label" runat="Server" />  
  24. </asp:TableCell>  
  25. <asp:TableCell runat="server">  
  26. <asp:Label id="Label3" text="Label" runat="Server" />  
  27. </asp:TableCell>  
  28. </asp:TableRow>  
  29. </asp:Table>  
  30. </form>  
  31. </body>  
  32. </html>  

Screenshot

ASP.NET(vb.net) & Table - asp:Table
.
.
Example 2

Table2.aspx

  1. <%@ Page Language="VB" %>  
  2. <script runat="server">  
  3.   
  4. Sub Button1_Click(sender As Object, e As EventArgs)  
  5. Dim numrows As Integer  
  6. Dim numcells As Integer  
  7. Dim i As Integer  
  8. Dim j As Integer  
  9. Dim r As TableRow  
  10. Dim c As TableCell  
  11.   
  12. ' Generate rows and cells  
  13. numrows = CInt(DropDown1.SelectedItem.Value)  
  14. numcells = CInt(DropDown2.SelectedItem.Value)  
  15.   
  16. For j = 0 To numrows-1  
  17.   
  18. r = new TableRow()  
  19.   
  20. For i = 0  To numcells-1  
  21. c = new TableCell()  
  22. c.Controls.Add(new LiteralControl("row " & j & ", cell " & i))  
  23. r.Cells.Add(c)  
  24. Next i  
  25.   
  26. Table1.Rows.Add(r)  
  27. Next j  
  28. End Sub  
  29.   
  30. </script>  
  31. <html>  
  32. <head>  
  33. <title>ShotDev.Com Tutorial</title>  
  34. </head>  
  35. <body>  
  36. <form runat="server">  
  37. Table rows:  
  38. <asp:DropDownList id="DropDown1" runat="server">  
  39. <asp:ListItem Value="1">1</asp:ListItem>  
  40. <asp:ListItem Value="2">2</asp:ListItem>  
  41. <asp:ListItem Value="3">3</asp:ListItem>  
  42. <asp:ListItem Value="4">4</asp:ListItem>  
  43. </asp:DropDownList>  
  44. Table cells:  
  45. <asp:DropDownList id="DropDown2" runat="server">  
  46. <asp:ListItem Value="1">1</asp:ListItem>  
  47. <asp:ListItem Value="2">2</asp:ListItem>  
  48. <asp:ListItem Value="3">3</asp:ListItem>  
  49. <asp:ListItem Value="4">4</asp:ListItem>  
  50. </asp:DropDownList>  
  51. <asp:button id="Button1" onclick="Button1_Click" runat="server" Text="Generate Table"></asp:button>  
  52. <hr>  
  53. <asp:Table id="Table1" runat="server" Gridlines="Both" BorderWidth="1" BorderColor="black" CellSpacing="0" CellPadding="5" Font-Size="8pt" Font-Names="Verdana"></asp:Table>  
  54. </form>  
  55. </body>  
  56. </html>  

Screenshot

ASP.NET(vb.net) & Table - asp:Table
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (No Ratings Yet)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.