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

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?
 
C

Cowboy \(Gregory A. Beamer\)

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!
|
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top