Getting the access table into html page
-
how to get access table into a html page using ASP, pls reply me for that.
parthan
-
how to get access table into a html page using ASP, pls reply me for that.
parthan
You might want to try a GridView control.
-
how to get access table into a html page using ASP, pls reply me for that.
parthan
here's an example of how to connect to the Access database through Classic ASP: Set MyConn = Server.CreateObject("ADODB.Connection") MdbFilePath = "c:\database\MyDatabase.mdb" ''# Server.MapPath is not needed, since we are providing the whole path already MyConn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & MdbFilePath Try some more good examples...
-
how to get access table into a html page using ASP, pls reply me for that.
parthan
if you are already know less about the data access the quick way is: use access data source and config that, then use a data control and set the data source to the control! then begin to config them in your own way! the other way is, data bound a control and use eval in your inline code, to have more control!