I was reading an ASP.net book last night and got a chuckle out of this
snippet of code:

                  protected System.Web.UI.WebControls.Table table1;

                  TableRow row = new TableRow();

                  TableCell cell = new TableCell();

                  cell.Text = "Joe";

                  row.Cells.Add(cell);

                  cell= new TableCell();

                  cell.Text = "555-4875";

                  row.Cells.Add(cell);

                  table1.Rows.Add(row);



Right after this snippet is the phrase, "See how easy it is to create a
table row"  Sometimes, these books can be ludicrous.  

There's a lot of things about .NET that I think are really good, but then
you find something like this and you just scratch your head thinking, "how
is this going to save me time?"

Marlon
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to