Hi, I have a simple problem. I need three if statements like the following but without the else. Just three simple conditions. is it best to use a case statement instead? Thanks for any help. Also if one needs some custom coding done is it possible to post on the job section?
Richard
Sorry I worked it out as
with the else.
Thanks
Richard
Richard
Code:
If Session("Authorizationlevel") ="1" then
bla
If Session("Authorizationlevel") ="2" then
bla
If Session("Authorizationlevel") ="3" then
bla
Code:
If Session("Authorizationlevel") ="1" then
bla
Else
end if
If Session("Authorizationlevel") ="2" then
bla
Else
end if
If Session("Authorizationlevel") ="3" then
bla
Else
end if
bla
Thanks
Richard
Comment