Quote:
|
quote:Response.Redirect FormPage + intPageForm Else 'Html page selected
|
In ASP for string concatenation use "&" instead of "+". So,
Response.Redirect FormPage & intPageForm,
and you don't need Else part of If statement - if user hasn't choosen any page you can't redirect him to some page, so nothing's should happen.
...but the Soon is eclipsed by the Moon