Need to populate a GridView (grdCompany) from a Dataset (dsClient). dsClient.Designer.cs has a class named CompanyTableAdapter
Any help will be appreciated
protected void Page_Load(object sender, EventArgs e)
{
CompanyTableAdapter companyAdapter = new CompanyTableAdapter();
//Get the companies Clients in this case
string Region = "Europe";
string Type = "Client";
string Status = "Active";
string SName = "GS_UK";
dsClient.CompanyDataTable Cliente = companyAdapter.GetDataBy(Region, Type, Status, SName);
}