I'm trying to get the connection string out of DW, it does supply the connection strnig however i think it doesent do it correctly.
Atleast i get the error:Login failed for user XXXX.
I've triede using my own connectionString which works fine, however the code underneath fails.
private void Page_Load(object sender, System.EventArgs e)
{
IDbConnection conn = Database.GetConn("Dynamicweb.mdb");
SqlDataSource1.ConnectionString = conn.ConnectionString;
}
Any suggetions?