vote up 0 vote down star

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.
flag
Can you please provide more info? Such as, what the code is doing that's not what you expect? – Eric Jul 26 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 at 15:35

2 Answers

vote up 1 vote down

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.

link|flag
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 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 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 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 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 at 16:25
show 3 more comments
vote up 4 vote down

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>
link|flag
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 at 14:22
1  
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. – CptSkippy Jul 26 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 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 at 14:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.