I am new to ASP.
I have 3 very simple forms for a user to sign up for a meeting. Form one collects some data choices and passes that info to form two, where it is displayed at the top of the page while the user fills out name, address etc on form two.
Form two is very simple text boxes to collect name etc
Example:
<input name="atnFirstName" type="text" size="60" maxlength="150" /> </input>
However, when FirstName is passed to page three, I get the FirstName plus a comma.
Example:
Victoria Ree,
I am confused, I am passing info from Form One to Page two and all works well, but from Form Two to Page three I get the comma. Does anyone know why?
I have 3 very simple forms for a user to sign up for a meeting. Form one collects some data choices and passes that info to form two, where it is displayed at the top of the page while the user fills out name, address etc on form two.
Form two is very simple text boxes to collect name etc
Example:
<input name="atnFirstName" type="text" size="60" maxlength="150" /> </input>
However, when FirstName is passed to page three, I get the FirstName plus a comma.
Example:
Victoria Ree,
I am confused, I am passing info from Form One to Page two and all works well, but from Form Two to Page three I get the comma. Does anyone know why?