Accessing Strongly Typed DataSet in an ASP.NET Web Site

422 views Asked by At

I have an ASP.NET 4.5 Web Site that I'm creating in VS2012 , and I'm having issues trying to access the strongly typed DataSet that I created for it.

I used the DataSet Designer to create the dataset in the App_Code folder. I know the App_Code fodler is working right, as I'm able to access and use the other C# classes I've created in it. Checking the DatasetName.Designer.cs file, all the code is there, with a namespace of "MySite.App_Code".

As well, the rdlc report that I've created on the site can see and use the dataset as well. Now I'm trying to access the dataset from the code-behind on one of my pages so I can fill it with data and apply it to my report viewer/report, but the editor keep telling me that it's an unknown object/namespace.

Any thoughts?

0

There are 0 answers