Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
130 views
in Technique[技术] by (71.8m points)

c# - ASP.net returning value from sql proc in an if statement

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

enter image description here

question from:https://stackoverflow.com/questions/65946849/asp-net-returning-value-from-sql-proc-in-an-if-statement

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Your screenshot seems to indicate that Login is a collection whose [0] element has an Outcome property?

if(Login[0].Outcome == "No")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...