I have a textbox on an ASP page, which is filled by a series of user queries. Once my customer is ready, he can display all of the query results in a single scrolling textbox. He can also edit the results of that textbox. The data layout within the textbox is in table form and Courier New is the fixed-space font. For example:
Qty Product Code Botanic Name Size Price North South
--- -------------- ------------------------------ ------ ------- ----- -----
1 PIPUMON3C PICEA PUNGENS 'MONTGOMERY' #3 60.00 7
1 ARARBRI5C ARONIA ARB 'BRILLIANTISSIMA' #5 11.25 17 16
Note the spaces in the title line between Botanic Name and Size.
When the user submits the information, I'm retrieving the data on a new ASP page using the Request.Form method. This works perfectly for all of the other data on the form, check boxes, single-line text boxes, etc. However, it strips all of the spaces from the scrolling textbox and looks like this:
Qty Product Code Botanic Name Size Price North South --- -------------- ------------------------------ ------ ------- ----- ----- 1 PIPUMON3C PICEA PUNGENS 'MONTGOMERY' #3 60.00 7 1 ARARBRI5C ARONIA ARB 'BRILLIANTISSIMA' #5 11.25 17 16
What I am trying to do is to create a confirmation page for my customer, that can also be printed out for their records. I then intend to have the same ASP page send this data via e-mail to my order processors. Both of these items need to have the information appear the same as it does on the submission page.
Thanks in advance for your help.
ggs54
Qty Product Code Botanic Name Size Price North South
--- -------------- ------------------------------ ------ ------- ----- -----
1 PIPUMON3C PICEA PUNGENS 'MONTGOMERY' #3 60.00 7
1 ARARBRI5C ARONIA ARB 'BRILLIANTISSIMA' #5 11.25 17 16
Note the spaces in the title line between Botanic Name and Size.
When the user submits the information, I'm retrieving the data on a new ASP page using the Request.Form method. This works perfectly for all of the other data on the form, check boxes, single-line text boxes, etc. However, it strips all of the spaces from the scrolling textbox and looks like this:
Qty Product Code Botanic Name Size Price North South --- -------------- ------------------------------ ------ ------- ----- ----- 1 PIPUMON3C PICEA PUNGENS 'MONTGOMERY' #3 60.00 7 1 ARARBRI5C ARONIA ARB 'BRILLIANTISSIMA' #5 11.25 17 16
What I am trying to do is to create a confirmation page for my customer, that can also be printed out for their records. I then intend to have the same ASP page send this data via e-mail to my order processors. Both of these items need to have the information appear the same as it does on the submission page.
Thanks in advance for your help.
ggs54