confirmation fields

M

Mike Stumpo

All of my form pages and confirmation pages are ASP pages
sending information to/from a database.

Is there a way to have a confirmation field display the
HTML without the actual HTML code being displayed also?

My guess is no, so is there an alternate way to have the
field(s) that have HTML in them, displayed correctly?

-M
 
T

Thomas A. Rowe

You would have to custom write the page in ASP to display the data from the database on the page and
not in confirmation fields.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
M

Mike Stumpo

I tried adding:

<%=request.form("fieldname")%>

in the confirmation page in place of the FP confirmation
field bot, but that dd not work. I assume I am missing
other code to make this work.

Any ideas you could share?

-M
-----Original Message-----
You would have to custom write the page in ASP to
display the data from the database on the page and
 
T

Thomas A. Rowe

I think you will either need to custom write the complete application in ASP or if you have a unique
ID for each form, store that in a session, then on the confirmation page use that value to query the
database for the record and then display

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Top