issue with data sets
I have just added a dataset to my website and it has a tableadapter(productstableadapter), however while working on the .aspx.net file, the intellisense does not read the table adapter created.
ON running the website now, I run into the following error...
The type or namespace name 'ProductsTableAdapter' could not be found (are you missing a using directive or an assembly reference?)
Please check if anything is missing here ?
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
DO you need to manually add some directives / assembly references when you add a dataset(from the add new item tab) to the
Db????
|