> Das Erstellen der Tabelle klappt mit VS. Wie kann ich aus dem Code aber
> auf die einzelnen Zellen per ID und nicht per Index zugreiffen? Tabelle,
> Zeile und die Cellen haben alle eine ID.
>
<asp:Table id="Table1" runat="server">
<asp:TableRow ID="tr1">
<asp:TableCell ID="tc1"></asp:TableCell>
</asp:TableRow>
</asp:Table>
protected System.Web.UI.WebControls.Table Table1;
protected System.Web.UI.WebControls.TableRow tr1;
protected System.Web.UI.WebControls.TableCell tc1;
private void Page_Load(object sender, System.EventArgs e)
{
tc1.Text = "Hallo Christoph!";
}
Gruss
Alex
Kommt zur .NET Community Conference in Karlsruhe
http://www.dotnetgerman.com/ncc/abstract.aspx?ID=4
_______________________________________________
Asp.net mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/asp.net