Hello
Forgive me for asking so many questions...I'm trying very hard to learn this...and I'm very grateful for your help.
I would like to retrieve some values from a database like this:
and display them in a table (GridView would be fine) as a list of all the linkTitle fields. Each linkTitle field will be a hyperlink which uses linkURL as its destination.
Now I've done this many times in ASP and it's really very easy. Is there an easy way to do it in ASP .net that I'm missing.
Any help would be much appreciated
Daniel
Forgive me for asking so many questions...I'm trying very hard to learn this...and I'm very grateful for your help.
I would like to retrieve some values from a database like this:
Code:
SELECT [linkTitle], [linkURL] FROM [Links] WHERE ([linkCategory] = @linkCategory)
and display them in a table (GridView would be fine) as a list of all the linkTitle fields. Each linkTitle field will be a hyperlink which uses linkURL as its destination.
Now I've done this many times in ASP and it's really very easy. Is there an easy way to do it in ASP .net that I'm missing.
Any help would be much appreciated
Daniel