Current location: Hot Scripts Forums » Programming Languages » ASP » ElseIf


ElseIf

Reply
  #1 (permalink)  
Old 07-11-03, 10:34 AM
austin322 austin322 is offline
Newbie Coder
 
Join Date: Jul 2003
Location: Florence, MS
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
ElseIf

I have put a little quiz on my site and it scores fine, but I can't get it to return the letter grade for the score. I have all of the Letter Grades stored in separate cookies. Here is the code I am trying to use:

<%
NumberQuestions=Request.Form("NumberQuestions")
score = Correct/NumberQuestions*100
score =ROUND (score, 0)
incorrect = NumberQuestions-Correct
LetterGrade=""
A1=Request.Cookies("A1")
A2=Request.Cookies("A2")
B1=Request.Cookies("B1")
B2=Request.Cookies("B2")
C1=Request.Cookies("C1")
C2=Request.Cookies("C2")
D1=Request.Cookies("D1")
D2=Request.Cookies("D2")
F1=Request.Cookies("F1")
F2=Request.Cookies("F2")

If F1 <= score AND score <= F2 then
LetterGrade="F"
ElseIf D1 <= score AND score <= D2 then
LetterGrade="D"
ElseIf C1 <= score AND score <= C2 then
LetterGrade="C"
ElseIf B1 <= score AND score <= B2 then
LetterGrade="B"
ElseIf A1 <= score AND score <= A2 then
LetterGrade="A"
End If
%>

Any help would be appreciated. Thanks!
Reply With Quote
  #2 (permalink)  
Old 07-11-03, 11:54 AM
Shane Shane is offline
Coding Addict
 
Join Date: Jun 2003
Location: Maryland, US
Posts: 268
Thanks: 0
Thanked 0 Times in 0 Posts
Make sure your cookies are returning an integer, not a string

Code:
A1= cint(request.cookies("A1"))
...
__________________
Shane Bauer
Microsoft Certified Professional (MCP) - ASP.NET
ASP/ASP.net, C#, VB/VB.NET, PHP, Perl, SQL
Reply With Quote
  #3 (permalink)  
Old 07-11-03, 12:48 PM
austin322 austin322 is offline
Newbie Coder
 
Join Date: Jul 2003
Location: Florence, MS
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks, that worked great!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
MOHAA Server Query - ASP Stealth Website Reviews 1 11-27-04 10:38 AM
if in a if? Mister B. ASP 3 10-02-03 02:12 AM
Help me guys Mister B. ASP 1 09-09-03 09:12 PM
Replace A Word With Another Word cebuy PHP 7 08-03-03 08:29 PM
ASP Calendar..HELP...pls jimthepict ASP 1 07-31-03 05:01 PM


All times are GMT -5. The time now is 04:18 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.