Mar
08
AppData or Data Directory for ACCESS Database or MDB file in Web.Config
I was facing issue with the database path in web.config file
It was something like this
<add key=”connectionstring” value=”provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\YourProject\Database.mdb;”/>
After searching thru internet, i found the solution for it. <add key=”connectionstring” value=”provider=Microsoft.Jet.OLEDB.4.0; Data Source=|DataDirectory|Database.mdb;”/> Hope this helps you. If yes, dont forget to put your [...]
by admin on March 8th, 2010 in ASP.Net
Jan
14
The major cause for this issue is, ReportViewer dll files are not available.
You need to download the ReportViewer installer Click to download from here: www.microsoft.com/downloads/details.aspx? I hope this will solve your issue. If yes, please don’t forget to write your comment below. I love it !! CHEEERRRSSS !!!
by admin on January 14th, 2010 in ASP.Net
Dec
23
I got this error when I was trying to duplicate the datatable.
After searching thru internet I found the below easy solution
ds.Tables.Add(new DataTable());
or
ds.Tables.Add(dt.Copy());
I hope this helps u too…
If yes, don’t forget to post your comment.
by admin on December 23rd, 2009 in ASP.Net