ASP and Fonts

A

AlejandroT

BlankI have the code;

<%
Response.Write("<TD valign=""top"">")
Response.Write("<A href=""image.asp?ImageID=" & lngImageID & """><B>" &
strTitle & "</B><BR>")
Response.Write("<IMG src=""image.asp?ImageID=" & lngImageID & """
width=""100"" border=""1""</A>>")
Response.Write("</TD>")
Response.Write("<TD valign=""top"">")
Response.Write("<BR>")
Response.Write(strDescription)
Response.Write("</TD>")
%>

and is giving me fonts that I do not want, so, my question is, how can I
change the font and size of the values when I will show in the browser?

thank you in advance

Al
 
A

Aaron Bertrand - MVP

Use client-side style sheets and / or <font> tags. Nothing to do with ASP
(and especially not databases).
 
J

Jhonny Vargas P.

Hi,

You should to use STYLE in the web page.

You put the following code between of the <HEAD></HEAD>

<style>
a:link { text-decoration: none; color : mediumblue; }
a:visited { text-decoration: none; color : mediumblue; }
a:hover { text-decoration: none; color : #ff802b; }
body {
font-weight: bold;
font-size: 8pt;
color: black;
font-family: Verdana, Arial, Tahoma;
}
</style>
 
B

Brynn

More on css at www.w3schools.com


--
Brynn
www.coolpier.com

*****
I reply and post to this newsgroup in an attempt to help other users.
I in no way guarantee the effects of scripts posted ...
and sometimes post partial scripts, untested to point users in the right
direction.

ALWAYS test my and everyone elses scripts before use ... duh ;)
*****
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,145
Messages
2,570,825
Members
47,371
Latest member
Brkaa

Latest Threads

Top