Users Pricing

forum

Home Forums Using if statement to check individual value returned from a query – MindStick

Using if statement to check individual value returned from a query

Anonymous User 2306 25 Mar 2015

I have a seleect query which the return query is used in an if statement

The query is correct, but the problem is becuase the query returns value from multiple rows it doesnt work. 

I want to use the if statement to check individual values retrived by the query. 

string security = "SELECT ProjectId FROM Project_List WHERE (ProfileId = (SELECT ProfileId FROM User_Profile WHERE (UserId = @UserId)))";
using (SqlConnection myConnection = new SqlConnection(connectionString))
{
    myConnection.Open();
    SqlCommand myCommand = new SqlCommand(security, myConnection);
    myCommand.Parameters.AddWithValue("@UserId", currentUserId); 
    if (Request.QueryString["ProjectId"] == myCommand.ExecuteReader().ToString())
    {
 
    }
    else
    {
         Response.Redirect("projectlist.aspx");
    }
}

1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md