Using loops <TD><%= Response.write("Data")%> </TD>...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear experts

i have just migrated from asp to asp.net and i am missing the loop for
creating tables. while in asp one could just start a loop anywhere withing <%
%> is this out of style in the .Net Scenario?

Thanks
Manish
 
Abort, Abort, Abort!


In 1.1, use a datagrid, datalist or a repeater. DataGrid is the easiest,
Repeater gives the most flexibility.

In 2.0, Use a GridView or Repeater.

Response.Write "<this>", Response.Write "<that>" is largely never used.

........
 
Back
Top