Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Position of HTML and ASP statements?

Status
Not open for further replies.

LaPluma

Programmer
Feb 3, 2002
139
DE
Hello

I have a form which tells the user to go back if he hasn't completed it properly. Here is a portion of the code:

if strName = "" then
Response.Write "Please type in your name"
Response.Write &quot;Please click <a href='javascript:history.back(1)'here</A> to go back.&quot;
end if

I would appreciate some assistance as to where I would place something like: <font face=&quot;verdana&quot; size=&quot;2&quot; color=&quot;navy&quot;></font>

Many thanks

LaPluma
 
here you go
<%
Response.Write (&quot;<font face='verdana' size='2' color='navy'>&quot;)

Response.Write &quot;Please type in your name&quot;
Response.Write &quot;Please click <a href='javascript:history.back(1)'>here</A> to go back.&quot;
Response.Write (&quot;</font>&quot;)
%> [bomb]
I may not get it the 1st or 2nd time,
but how sweet that 15th time can be.
admin@onpntwebdesigns.com
 
Hello onpnt

Thank you for your post and help. It makes a difference.

Best wishes

LaPluma
 
your very welcome LaPluma
Glad to help[thumbsup2] [bomb]
I may not get it the 1st or 2nd time,
but how sweet that 15th time can be.
admin@onpntwebdesigns.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top