|
Answer» Hi all, I am running Windows XP SP2 with IIS and .NET framework 2.0 installed. In the Default Website I have designated index.aspx as a valid document. When I go to http://localhost in my WEB browser I get a BLANK page. Not a "Page Cannot Be Found" error, just a page with a white background and nothing more. In my index.aspx page I am trying to attach to and view information in a ACCESS database. The code is VERY SIMPLE right now (until I can get it working correctly) Here is the code....
ASPX Test
ProviderName="System.Data.OleDb" ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0; Data Source=D:\Databases\eCommerce\eCommerce.mdb" SelectCommand="SELECT ItemNumber, ItemName, ItemPrice, ItemQuantity FROM Products"/>
The path in the DataSource is relative to my local machine. I KNOW that the database CONTAINS data.
Any help would be greatly appreciated. Bump.
Anyone have a suggestion???I checked one of my projects and noticed two things,
1. there doesn't appear to be a clause 2. should you not be using AccessDataSource with Access; not SqlDataSource
Just some thoughts.
|