I'm trying to convert the code below to VB with an online code converter.
It's bombing out on the datatable part...I can convert the session section.
Not familiar with C# AT ALL.
Private dataTable customers
{
get
{
if (Session["GridSource"] == null)
Session["GridSource"] = getCustomers("");
return Session["gridSource"] as DataTable;
}
Set { Session["gridSource"] = value; }
}
Start Free Trial