if(Request.QueryString["UserId"] !== WebSecurity.CurrentUserId){
Response.Redirect("~/AdminError");
}
what is wrong with the above expression ? Please help
it says
Compiler Error Message: CS1525: Invalid expression term '=='
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s an extra
=sign.!==is not legal in C#,!=is.The compiler sees this as a sequence of the tokens
!(logical negation) and==and complains that negating the operator==does not make sense.