|
-
Jun 8th, 2001, 08:28 AM
#1
Thread Starter
Addicted Member
-
Jun 8th, 2001, 10:19 AM
#2
Addicted Member
Of the top of my head, I don't know of any way.
However, if you just make your report using tables, or even the <PRE> (PREformatted, preserves spacing and such) tag might work, user font size shouldn't be a problem.
That's the idea behind things like tables, they create a universal formatting that everyone should be able to see
Your second question...no idea I don't use ASP or technologies like that
Things I've Said:
"Life's funny like that...elephants can wear frilly lace panties, and Dubya still looks like a monkey in a big chair"
"Take four goats and strap one to each foot of a llama. Presto, goat-powered llama!"
"You want to get me to work more, get me a Coke. No? Then deal with inferior garbage, I'm not coding another line and your clients can go to......thanks, I'd love a Coke right about now!"
-
Jun 8th, 2001, 11:14 AM
#3
Thread Starter
Addicted Member
ok, thanks
I'm using tables but it looks awful if fonts are too big (int the table, making cells 3 times as high as they should)
Anyway, I guess i'm stuck with that...
And what is this <PRE> you're talking about ? Never used it, so how does it works ?
Thanks again for the reply csammis !
-
Jun 8th, 2001, 11:35 AM
#4
Thread Starter
Addicted Member
Oh and ignore my 2nd question, i solved it by making an activexdll to send the mail !
-
Jun 8th, 2001, 12:10 PM
#5
Frenzied Member
Why don't you use a style sheet (or at least a style tag) to describe the font size and attributes for the TD tags?
oOOo--oOOo
__ /\/\onte96
oOOo--oOOo
Senior Programmer/Analyst
MCP
[email protected]
[email protected]
Your results may vary.. some restrictions may apply.. pricing and participation may vary.. not available in all states.. professional driver closed course..quantities limited..
-
Jun 9th, 2001, 01:42 AM
#6
Addicted Member
The font tags won't change it if the browser has font size preferences set. On the other hand, a table would change size automagically whatever the font size is and maintain alignment.
Things I've Said:
"Life's funny like that...elephants can wear frilly lace panties, and Dubya still looks like a monkey in a big chair"
"Take four goats and strap one to each foot of a llama. Presto, goat-powered llama!"
"You want to get me to work more, get me a Coke. No? Then deal with inferior garbage, I'm not coding another line and your clients can go to......thanks, I'd love a Coke right about now!"
-
Jun 12th, 2001, 02:10 PM
#7
Thread Starter
Addicted Member
Ok; problem solved !
I used style sheet, as suggested, and it works perfect.
Thanks for everything !
(So much to learn in so less time)
-
Nov 7th, 2001, 01:41 PM
#8
Addicted Member
Very Late Response
Email out of asp.
Look at the CDO NT from microsoft that runs on the NT platform.
For information on this look at
http://msdn.microsoft.com/library/de...asp?frame=true
or
http://msdn.microsoft.com/library/de...do_roadmap.htm
Or search for CDO NT at microsoft.com
Usage Example
VB Code:
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")
' send to address
objMail.To = Trim(strTo)
' send from address
objMail.From = Trim(strFrom)
' subject line
objMail.Subject = Trim(strSubject)
' body
objMail.Body = Trim(strMessage)
' send the email
objMail.Send
' destroy to object
Set objMail = Nothing
-
Nov 7th, 2001, 04:44 PM
#9
PowerPoster
i thought he was talking about font sizes?
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
-
Nov 7th, 2001, 04:47 PM
#10
Addicted Member
Here is the original question posed. If you scroll to the top you will notice the 2nd paragraph.
Is there a way to know which size is the font of the browser a user is currently using ? (Normal, small, very small, big, huge)
I need this coz I made a report in an html document but if the user font is too big, it appears all messed up
Also, is there a way to send a mail byt SMTP via ASP ? Any suggestions ?
^
^^
^^^
|
|
|
???????????????????????????
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|