Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_cdo thread: CDONTS question on single spacing asp email


Message #1 by "David McMahan" <david_mcmahan@a...> on Wed, 18 Jul 2001 15:17:02
I have multi asp forms that submit an asp generated email, but

I am having trouble getting my email output to be single spaced.





I have tried:

  htmlText = htmlText & "<tr>"

	htmlText = htmlText & "<p style=word-spacing: -1; line-height: 

100%; margin-top: -1; margin-bottom: -1><b>City:</b>   " & Session("city") 

& "</p>"

        htmlText = htmlText & "</tr>"

        htmlText = htmlText & "<tr>"

	htmlText = htmlText & "<p style=word-spacing: -1; line-height: 

100%; margin-top: -1; margin-bottom: -1><b>County:</b>   " & Session

("county") & "</p>"

        htmlText = htmlText & "</tr>"

        htmlText = htmlText & "<tr>"

	htmlText = htmlText & "<p style=word-spacing: 0; line-height: 

100%; margin-top: 0; margin-bottom: 0><b>State:</b>   " & Session("state") 

& "</p>"


  Return to Index