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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. HardCoreCoder

    clicking mailto does nothing

    Yes, there is a limit. I have heard this varies between browsers and is around the 1425 character length. This may or may not include the email addresses. If someone has a lot of spare time they could test it ;)
  2. HardCoreCoder

    Inline CSS a:hover callout, is it possible?

    I am being forced to use strict inline CSS calls (email newsletters). I would like to have my links rollover from blue to red. Is there a way to call this out inline? I can't use JavaScript either, so onmouseover is out.
  3. HardCoreCoder

    Make the space BR and/or P tags create smaller

    Thanks for the reply. I tried what you said and I can add MORE to it but it does not seem to allow me to reduce it. The following code is what I used, I get the standard spacing between paragraphs. <p style="padding-bottom:1pt;"><font face="Arial" size="2">Come live out your...
  4. HardCoreCoder

    Make the space BR and/or P tags create smaller

    Is there a way to make the space that a <BR> or <P> tag create smaller. For example. I have 2 paragraphs of size 12pt text. I put two <BR>'s to split the text. My boss wants the gap between the text smaller. Is there a way to do this? I don't mind not using <BR> or <P> if there is...
  5. HardCoreCoder

    Checkbox value default to No when unchecked?

    I figured it out. There may be a better way of doing it but it works: strClassAssignment = Request.form("class_assignment") If strClassAssignment = "Yes" Then strClassAssignment = "Yes" Else strClassAssignment = "No" End If strTermPaper = Request.form("term_paper") If strTermPaper =...
  6. HardCoreCoder

    Checkbox value default to No when unchecked?

    I have 2 checkboxes on my form. If they check them the value comes back as Yes. that works fine. What I want to do is have the value come back as No if the box isn't checked. I tried it this way (in red) and it isn't working: 'Declare variables for the form input fields and the e-mail...
  7. HardCoreCoder

    How to make an email into an HTML email instead of text.

    Thanks for the rapid reply. Worked great!
  8. HardCoreCoder

    How to make an email into an HTML email instead of text.

    What do I need to add to this set of code to make it an HTML email? <%@language="VBScript"%> <%Option Explicit%> Dim objMail Set objMail=CreateObject("CDO.Message") objMail.Subject=strSubject objMail.From="mpbarone@aaamichigan.com" objMail.To="mpbarone@aaamichigan.com"...
  9. HardCoreCoder

    How to add hard breaks in text email

    How do I add hard breaks when sending text email? I have the code shown below, what do I add to break up the lined in the body of the email? <%@language="VBScript"%> <%Option Explicit%> Dim objMail Set objMail=CreateObject("CDO.Message") objMail.Subject=strSubject...

Part and Inventory Search

Back
Top