Tables come in all different shapes and sizes. Here is a simple 3 row by 2
column table that is 760 pixels wide with a label in row 1, column 1 and a
textbox in row 1, column 2.
I should also tell you that this is pretty basic HTML stuff (knowing to use
tables to layout the page). You may want to brush up on HTML techniques
before going to far into asp.net.
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb"
Inherits="WebApplication1.WebForm1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name=vs_defaultClientScript content="JavaScript">
<meta name=vs_targetSchema
content="
http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body >
<form id="Form1" method="post" runat="server">
<TABLE ID="Table1" CELLSPACING="1" CELLPADDING="1" WIDTH="760" BORDER="0">
<TR>
<TD><asp:Label id="Label1" runat="server">Label</asp:Label></TD>
<TD><asp:TextBox id="TextBox1" runat="server"></asp:TextBox></TD></TR>
<TR>
<TD></TD>
<TD></TD></TR>
<TR>
<TD></TD>
<TD></TD></TR></TABLE>
</form>
</body>
</HTML>