how to display the content in dataset programmatically, but look like a gridview?

  • Thread starter Thread starter Kelly Zhu
  • Start date Start date
K

Kelly Zhu

I am learning ASP.NET. Try to create a grid view programmatically. More
precisely, I used to work with record sets in traditional ASP. With a
recordset, I could display it in any tabular view I want. How do I do the
same in ASP.NET?
 
There are a variety of ways to play without outputting a single line at a
time. You can bind to a GridView, of course, which is tabular. If you need
ultimate flexibility, consider a Repeater, as you are completely in control
of the HTML output. YOu can use this in conjuction with CSS for some real
power.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box!
|
*************************************************
 
Back
Top