Here my code. Can anyone tell where to put the return statement? I'm using a 3 tier concept.
DataTable obj_dt = new DataTable();
public DataTable City_Name_get()
{
try
{
string store_pro = "sp_tb_city";
obj_DB_Con.connection_db(store_pro, null);
return obj_dt;
}
catch (Exception ee)
{
MessageBox.Show(ee.Message, "Information", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}