Hi guys, well I'm not quite up and running yet but I'm getting closer.
I have tried both with 2000 and 2005 databases as my hoster (webhost4life) provides the opportunity to choose.
I first created database(currently 2005)
then ran included scripts plus aspnet_regsql.exe
next in the web dot config changed
<
connectionStrings>
<
add name="classifiedsConnection" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\classifiedsdb.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" />
</
connectionStrings>
to:
<connectionStrings>
<add name="CLASSIFIEDSDB" connectionString="Server=myServerName; Database=myDBname; User ID=myUserID; Password=myPassword; Trusted_Connection=False" providerName="System.Data.SqlClient"/>
<remove name="LocalSqlServer"/>
<add name="LocalSqlServer" connectionString="Server=myServerName; Database=myDBname; User ID=myUserID; Password=myPassword; Trusted_Connection=False" providerName="System.Data.SqlClient"/>
</connectionStrings>
Also changed the customErrors mode from "RemoteOnly" to "Off"
which is basically the changes that I used in order to get the clubsite starter kit up and running.
When the site opens I get Object reference not set to an instance of an object
however other pages do work ie. login.aspx, register etc but home(aka default.aspx) not yet
I continue to poke around but my knowledge is limited so any help would be appreciated.
Thanks, Dravend.