Question : asp error in code - values

1:
2:
 		
message= message & "<br><br><ul> " & 90,75 & + "& i &-1" *60,50  " euro ( " & i &" * 90.75 euro (inclusief 21% BTW).</ul><br>"


i want to count:

first person always pays 90,75
the other persons (i) pays only 60,50

formula = 1*90,75 + i-1* 60,50

how do we do that in asp?


i have the following error:

Microsoft VBScript compilation error '800a0401'

Expected end of statement

/seminaires/100927_homing/inscription2.asp,

Answer : asp error in code - values

Try this:
1:
message= message & "<br><br><ul> " & 90.75 + (i-1)*60.50 & " euro ( " & i*90.75 & " euro (inclusief 21% BTW).</ul><br>"
Random Solutions  
 
programming4us programming4us