I tried it, but as you see below, it had no effect. is there any way to
structure my below html so the NOWRAP will work for my problem? i see how it
works with regular text, but my case is a little different.
<table border=0><tr><td NOWRAP align=center>
<table border=0 background="images/prints/thumb_Abbey
..jpg" style='border:solid 1pt #000000' cellpadding=0 cellspacing=0>
<tr><td NOWRAP><a href="" onclick="javascript
:PW('pop_print.asp?print=Abbey
',310,400);return false;">
<img src="images/filler.gif" width=60 height=40 border=0></a>
</td></tr></table></tr>
<tr><td align=center><font face="verdana,sans-serif" size=1>Abbey<br>(AYSP)
</font></td></tr></table>
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uJN1cKjYFHA.228@TK2MSFTNGP12.phx.gbl...[color=blue]
> put it in a Table Cell with NOWRAP on
>
> --
> Curt Christianson
> Site & Scripts:
http://www.Darkfalz.com
> Blog:
http://blog.Darkfalz.com
>
>
> "scott" <sbailey@mileslumber.com> wrote in message
> news:OkjSi$iYFHA.584@TK2MSFTNGP15.phx.gbl...[color=green]
>> Is there a way to prevent IE from forcing a line break? Below in LISTING
>> 2, you notice the table background image extention of '.jpg' begins a new
>> line, instead of staying on the same line as it's file name. Same happens
>> with my javascript onclick event, IE forces a line break and breaks my
>> code. In my asp code, you notice I'm inserting line breaks, but IE seems
>> to do what it wants. I should note, the below HTML results is actually 1
>> table of 40 or so that asp builds as a string.
>>
>> I mention that because some tables get rendered without line breaks
>> following the 'jpg' and javascript code. My prolem is that when IE forces
>> line breaks as below, the code doesn' work.
>>
>> Any ideas?
>>
>> LISTING 1 - CODE
>>
>> ColorInfo = ColorInfo & "<table border=0
>> background=""images/prints/thumb_" & RS10("choiceData1") & ".jpg""
>> style='border:solid 1pt #000000' cellpadding=0 cellspacing=0>" & chr(13)
>> & chr(10)
>> ColorInfo = ColorInfo & "<tr><td>" & chr(13) & chr(10)
>> ColorInfo = ColorInfo & "<a href=""""
>> onclick=""javascript
:PW('pop_print.asp?print=" & RS10("choiceData1") &
>> "',310,400);return false;"">" & chr(13) & chr(10)
>> ColorInfo = ColorInfo & "<img src=""images/filler.gif"" width=60
>> height=40 border=0></a>" & chr(13) & chr(10)
>> ColorInfo = ColorInfo & "</td></tr></table></tr>" & chr(13) & chr(10)
>> ColorInfo = ColorInfo & "<tr><td align=center><font
>> face=""verdana,sans-serif"" size=1>" & Replace(RS10("choiceName"),"
>> ","<br>",1,1) & "</font></td></tr></table></td>" & chr(13) & chr(10)
>>
>>
>> LISTING 2 - RESULTS
>>
>> <table border=0 background="images/prints/thumb_Abbey
>> .jpg" style='border:solid 1pt #000000' cellpadding=0 cellspacing=0>
>> <tr><td>
>> <a href="" onclick="javascript
:PW('pop_print.asp?print=Abbey
>> ',310,400);return false;">
>> <img src="images/filler.gif" width=60 height=40 border=0></a>
>> </td></tr></table>
>>[/color]
>
>[/color]