Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an if..else statement that will display whether or not the student is qualified to go for competition based from the value in database. But, my code is not working correctly.

My code is as follows:

<% If (rs_view.Fields.Item("StudentStatus").Value="OK") Then %>
<strong><font color="#3300FF" size="-1" face="Arial, Helvetica, sans-serif">
<%Response.Write("You are QUALIFIED to go for competition")%>
</font></strong>

<% Else %>

<strong><font color="#FF0000" size="-1" face="Arial, Helvetica, sans-serif">
<%Response.Write("You are NOT QUALIFIED to go for competition")%>
</font></strong>

<% End If %>

Any ideas?

  • it doesn't work correctly..meaning either the student is qualified or not qualified, it will still display NOT QUALIFIED for both status.
share|improve this question
Can you please provide more info? Such as, what the code is doing that's not what you expect? – Eric Jul 26 '09 at 4:30
t doesn't work correctly..meaning either the student is qualified or not qualified, it will still display NOT QUALIFIED for both status. – atiwuj Jul 26 '09 at 15:35
what do you get between the two ** when you put this code above your if statement - <%response.write("*" & rs_view.Fields.Item("StudentStatus").Value & "*<br>")%> – Cape Cod Gunny Oct 27 '11 at 0:39

3 Answers

Perhaps the StudentStatus field in your recordset is lowercase? Wrap it in a UCase()?

Also, you can really simplify that code for readability...

<%
Dim RspMsg, RspColor
If (UCase(rs_view("StudentStatus"))="OK") Then 
    RspMsg = "You are QUALIFIED to go for competition"
    RspColor = "#3300FF"
Else
    RspMsg = "You are NOT QUALIFIED to go for competition"
    RspColor = "#FF0000"
End If

%>

<strong><font color="<%=RspColor%>" size="-1" face="Arial, Helvetica, sans-serif">
<%=QualificationResponse%></font></strong>
share|improve this answer
Thanks..I have tried using your codes..but it seems doesn't work correctly..meaning either the student is qualified or not qualified, it will still display NOT QUALIFIED for both status..any other method? Pls help..thank you.. – atiwuj Jul 26 '09 at 14:22
2  
It sounds like your StudentStatus never equals "OK", you should try outputting the value of StudentStatus to see what it actually is. Generally it's a bad idea to make status columns character data as you're discovering. Making StudentStatus a foreign key reference into a Status table would constrain the possible values of StudentStatus and resolve any ambiguity. – MyItchyChin Jul 26 '09 at 14:54
Can you teach me on how to do this? Making StudentStatus a foreign key reference into a Status table would constrain the possible values of StudentStatus – atiwuj Jul 26 '09 at 15:17
Hi there, How about if I want to save the result either qualified or not qualified direct into database? – atiwuj Jul 27 '09 at 14:53

You have loads of redudant code.. this code does the same as yours, but a bit reduced. You should also move the styling into a stylesheet.

<%
If rs_view("StudentStatus") & "" = "OK" Then
  %><strong><font color="#30f" size="-1" face="Arial, Helvetica, sans-serif">You are QUALIFIED to go for competition</font></strong><%
Else
  %><strong><font color="#f00" size="-1" face="Arial, Helvetica, sans-serif">You are NOT QUALIFIED to go for competition</font></strong><%
End If
%>

Now, StudentStatus is simply not OK. What you need to do is ouput StudentStatus and see what it is, e.g. insert the following before or after the code in your question (or the reduced variant above) and check it's output:

<%
Response.Write "*" & Server.HTMLEncode(rs_view("StudentStatus")) & "*"
%>

Possible causes is that the OK is in small caps, it's padded by spaces or isn't OK at all, but instead 1 or true or whatever.

share|improve this answer
Thanks..I have tried using your codes..but it seems doesn't work correctly..meaning either the student is qualified or not qualified, it will still display NOT QUALIFIED for both status..any other method? Pls help..thank you.. – atiwuj Jul 26 '09 at 14:27
2  
Did you insert the second code snippet into your code? What does it say between the stars when you're viewing a student that should display as qualified? – svinto Jul 26 '09 at 14:31
Yes, I do insert the codes..It will display the value in database which is "NOTOK" eventhough the actual value is "OK" – atiwuj Jul 26 '09 at 15:07
If it displays NOTOK, then that's what's in the database for that row. Change the if-statement to whatever is outputted between * and it will start working. – svinto Jul 26 '09 at 16:18
I'm sorry..what i mean is that the value in database is OK but after execute your codes, the output is NOTOK which is NOT QUALIFIED..it doesn't work correctly... – atiwuj Jul 26 '09 at 16:25
show 3 more comments

Try replacing the first line with:

<% If (rs_view.Fields.Item("StudentStatus").Value=="OK") Then %>

A single = will assign StudentStatus a value of "OK", but a == will compare the value of StudentStatus against the value "OK".
I haven't tested it but hopefully this is what you are looking for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.