ASP and Fonts

10/02/2004 - 20:42 por AlejandroT | Informe spam
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
 

Leer las respuestas

#1 Aaron Bertrand - MVP
10/02/2004 - 21:54 | Informe spam
Use client-side style sheets and / or <font> tags. Nothing to do with ASP
(and especially not databases).

Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/




"AlejandroT" wrote in message
news:
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


Preguntas similares