Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default Re: ASP and Fonts

    On Tue, 10 Feb 2004 15:42:48 -0400, "AlejandroT"
    <unit_antispam@yahoo.com> wrote:
    >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?
    You hit three separate groups that have nothing to do with what you
    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

  6. #5

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139