create a data driven site

cereldine

New member
Joined
Aug 3, 2006
Messages
2
Programming Experience
Beginner
Hi, i'm trying to teach myself how to create a data driven site in visual studio 2003 without much luck.

Is anyone aware of any good vb based tutorials that will help me understand better, i'm familiar with visual web developer 2005 (alllbeit beta version about 15 months ago) so just something to help trigger memory.

In mean time i'm struggling with how you get a datagrid to connect and show values in web forms. I would like to use oledbadaptor and generate dataset method i have read about in book, how do i set this up to be used in a website, also i'm using an access db as i have no current access to sqlserver.

Windows method =
oleDbDataAdapter1.fill(mydataSet)
 
I have managed to work out how to get the columns of my table to show, still not clear on what i have to do to get values within these columns. Ive tried following, any help appreciated.

dim ds as new dataset

if oledbconnection1.state = connectionstate.closed then oledbconnection1.open

daInvoice.fill(ds)
datagrid2.datasource = ds
datagrid2.databind()
 
Back
Top