Hi smith,
Use TableName property of DataTable as:
[WebMethod]
public DataTable Select_Employee_By_Sno(string Emp_Code)
{
Business_Logic bl =new Business_Logic();
DataTable dt = new DataTable();
dt.TableName ="somename";
dt = bl.Select_Employee_By_Sno(Emp_Code);
return dt;
}
Posted On:
01-Aug-2015 23:27