Archive for the cateroy ASP.Net

« Older Entries  

Data Directory for ACCESS Database in Web.Config

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 [...]

Could not load file or assembly ‘Microsoft.ReportViewer.WebForms’

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 !!!

DataTable Already Belongs to Another Dataset

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.