salman.pirani 0 Posted August 26, 2012 Report Share Posted August 26, 2012 i want to excutes some value with a varialble these are the code <%z = 85If z=<60 Then Response.Write("The training attended did not make a substantial difference on the employee’s performance. It is requested to nominate the respective employee for training in the same area")If z=80 Then Response.Write("The training attended reflects the employee reception to the subject. Please note personal counseling, refreshers at work, reading material and other such methods can be used to reinforce better impact")If z>80 Then Response.Write("Congratulations your employee’s performance shows above average impact. The training loop for the identified need is considered closed")If z>60 Then Response.Write("The training attended reflects the employee reception to the subject. Please note personal counseling, refreshers at work, reading material and other such methods can be used to reinforce better impact")%> the problem is that its printing both the last 2 codes i want that when value come between 60 to 80 so it will print ("The training attended reflects the employee reception to the subject. Please note personal counseling, refreshers at work, reading material and other such methods can be used to reinforce better impact") Quote Link to post Share on other sites
salman.pirani 0 Posted August 26, 2012 Author Report Share Posted August 26, 2012 wht should i write after if like if z>60 and <80 then response.write "xxx"whts would be the logic like bold above Quote Link to post Share on other sites
justsomeguy 1,135 Posted August 27, 2012 Report Share Posted August 27, 2012 z>60 and z<80 Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.