im somewhat a newb to ASP.
I have stuff loaded from a database, and i want to insert it in my page where i want it
say i have a column called “users” loaded. how would i make it load into the page. all i have is.
Set Conn = Server.CreateObject("ADODB.Connection")
Conn = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("news/news.mdb")
GI = "SELECT TOP " & updates & " id, date, title, body, user FROM updates ORDER BY date DESC;"
(just ignore all the other columns)
what would i use to be able to insert into my page?
Thanks for any help
-Naaman