c# - Contains Method doesnt work -
using code below, want compare usertype
, if "student" want redirect student profile, etc.
but gets last else
statement , writes error.
the returnquery
method works because returns value "student".
string emailid = session["new"].tostring(); string usertype = returnquery( "select usertype registration email = '" + lblemail.text + "'"); if (usertype.contains("student")) { response.redirect("profile.aspx?email=" + emailid.tostring()); } else if (usertype.contains("company")) { response.redirect("companyprofile.aspx?email=" + emailid.tostring()); } else if(usertype.contains("admin")) { response.redirect("adminprofile.aspx?email=" + emailid.tostring()); } else response.write("error");
if usertype="student"
can use usertype.equals("student");
determine variable. here method.
Comments
Post a Comment