string RetVal(string s){ string retval = ""; if (s == " ") { return retval; } else { return s.Trim(); } }
string empname = RetVal(GridView1.Rows[0].Cells[1].Text);