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!

Need to use a special Font on WEB page

Status
Not open for further replies.

DougP

MIS
Dec 13, 1999
5,985
US
I Need to use a special Font on my WEB site
The end users will not have this font loaded so they see it generic.
I know I could create a JPEG but I need the numbers to change each time the page is loaded.

Is there a way to point to a font on my WEB site and have that text box use that font??
DougP, MCP

Visit my WEB site to see how Bar-codes can help you be more productive
 
Thanks, I was thinking of doing that?

One question
How do you generate the html to stay on the same page???





DougP, MCP

Visit my WEB site to see how Bar-codes can help you be more productive
 
Doug,

I just Posted the form to the same page, and used request strings to process the info or if/then statements to display nothing if the request string was empty, like for first time page visits.

Thanks,
Rexolio
 
Doug,

the full code is in the text box on the page that I routed you to. You write the form submissions to the same page, i.e. the form test.asp writes to the same page, test.asp (<form method=&quot;Post&quot; action=&quot;test.asp&quot;>). At the top of the page I use a request string to retrieve the info (Digits = Request(&quot;digits&quot;))

If you look over the code I put in the text box you'll see what I mean. I pasted the entire page's code in that text box.

Thanks,
Rex
 
Ok we're still missing something

It does not retrieve the .GIF files
how is that done????

here is what I pasted in my WEB site

----------------
<html>
<%@ Language=VBScript %>
<head>
<title>Digits to GIF's</title>
</head>
<%Digits = Request(&quot;digits&quot;)%>
<body>
<div align=&quot;center&quot;>
<center>
<table border=&quot;1&quot; width=&quot;500&quot;>
<tr>
<td width=&quot;50%&quot;>
<form method=&quot;POST&quot; action=&quot;digits.asp&quot;>
<p align=&quot;center&quot;><b>Type a number here:</b><br>
<input type=&quot;text&quot; name=&quot;digits&quot; size=&quot;20&quot; value=&quot;&quot;><br>
<input type=&quot;submit&quot; value=&quot;Submit&quot; name=&quot;submit&quot;></p>
</form>
</td>
<td width=&quot;50%&quot;>
<p align=&quot;center&quot;>
</td>
</tr>
</table>
</center>
</div>
</body>
</html>
DougP, MCP

Visit my WEB site to see how Bar-codes can help you be more productive
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top