cmdパラメータを使用したので、クエリ文字列を変更してパラメータを受け入れるようにする必要があります。
string comText = "select * from instructor where Instructor_email like @instemail";
com.Parameters.AddWithValue("@instemail", "%" + instemail);
または、これは一重引用符を使用してパラメータを削除することでも機能しますが、パラメータを使用する方が良いと思います。
string comText = "select * from instructor where Instructor_email like '%" + instemail + "'";