Ask a Question related to ASP Database, Design and Development.
-
AlejandroT #1
ASP and Fonts
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
AlejandroT Guest
-
Fonts not available
Can someone please tell me why some fonts aren't available in Photoshop? I've noticed whenever I have to reinstall the software, or when I... -
Illustrator 10 isn't recognizing fonts that I've dropped in the Fonts folder
I'm confused about why my Illustrator 10 (running on OS 10) is only recognizing a subset of the fonts I have loaded into my Library/Fonts folder. Can... -
Win CE fonts??
Hi I tried to use Win Central European fonts, but they do not work properly. Is it possible that Director can not handle CE fonts? Thanks Milan -
Using fonts that are not on c:\windows\fonts
is it possible to use fonts that exist not on the PC but on the web server and get flash to load them from the web server I want to create a... -
Several installed fonts don't show up in the fonts list
Fonts in Illustrator and Photoshop are ordered alphabetically by writing script code, and use the PostScript Name. Consequently many fonts will not... -
Aaron Bertrand - MVP #2
Re: ASP and Fonts
Use client-side style sheets and / or <font> tags. Nothing to do with ASP
(and especially not databases).
--
Aaron Bertrand
SQL Server MVP
[url]http://www.aspfaq.com/[/url]
"AlejandroT" <unit_antispam@yahoo.com> wrote in message
news:O9niTeB8DHA.3112@tk2msftngp13.phx.gbl...> 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
>
>
Aaron Bertrand - MVP Guest
-
Jhonny Vargas P. #3
Re: ASP and Fonts
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>
--
Saludos,
Jhonny Vargas P. [MS-MVP]
Santiago de Chile
[url]http://www.mvp.cl[/url]
"AlejandroT" <unit_antispam@yahoo.com> escribió en el mensaje
news:O9niTeB8DHA.3112@tk2msftngp13.phx.gbl...> 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
>
>
Jhonny Vargas P. Guest
-
Jeff Cochran #4
Re: ASP and Fonts
On Tue, 10 Feb 2004 15:42:48 -0400, "AlejandroT"
<unit_antispam@yahoo.com> wrote:
You hit three separate groups that have nothing to do with what you>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?
want to accomplish. Try this group:
alt.html.tags
And this site:
[url]http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=html+font+tag[/url]
Jeff
Jeff Cochran Guest
-
Brynn #5
Re: ASP and Fonts
More on css at [url]www.w3schools.com[/url]
--
Brynn
[url]www.coolpier.com[/url]
*****
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 ;)
*****
"AlejandroT" <unit_antispam@yahoo.com> wrote in message
news:O9niTeB8DHA.3112@tk2msftngp13.phx.gbl...> 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
>
>
Brynn Guest



Reply With Quote

