Much thanks to Victor as well. Great job! I can host the website just fine with GoDaddy. The issue I run into is with the connection string. The default connection string in the Extended Kit is the following:
<connectionStrings>
<add name="Personal" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|Personal.mdb;" providerName="System.Data.OleDb"/>
<add name="PersonalAccessProvider" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|ASPNetDB.mdb" providerName="System.Data.OleDb"/>
</connectionStrings>
I think on any other host this would work. On GoDaddy, however; they require you to put your Access Database in their access_db folder that is created when you setup using an Access Database. The problem here is the DataDirectory part in Source=|DataDirectory|Personal.mdb; for example. Based on the following website:
http://programming.top54u.com/post/ASP-Net-2-0-Access-Database-connection-string.aspx
the DataDirectory folder refers to the App_Data folder which is where a database would be by default but NOT with GoDaddy.
My question is simple: how do I use the Extended Kit with GoDaddy with an Access Database? Is this even possible? I think I can use this connection string if I refer to the access_db folder instead of the App_Data folder. How do I do that? Help here would be much appreciated. Thanks in advance.
Kevin