What server control is for render pure html file?

  • Thread starter Thread starter RedHair
  • Start date Start date
R

RedHair

I'd like to dynamically render lots of html file from a ASP.NET 2.0 page,
which server control or method is best for this?
Thanks.
 
The asp:repeater
has the least amount of overhead.

you DataBind it to a dataSource.


The repeater lets you control the look/feel more than the others, but takes
more work to get there.
 
Back
Top