i have a login box on my form with a submit button , on submit im passing the value through to sql to return a simply yes or no.
I can see the value No as my outcome (pic 1)
however i cannot seem to pull it though to my If statement (pic 2). it only allows my to choose count which is always 1, i need the Yes or no value. something on the lines of
if (Login.Outcome() == "No" )
I have read somewhre its within items but need help on how to get this value.
enter image description here
Your screenshot seems to indicate that Login is a collection whose [0] element has an Outcome property?
if(Login[0].Outcome == "No")
1.4m articles
1.4m replys
5 comments
57.0k users