PDA

Click to See Complete Forum and Search --> : HTML Beginner


Bonker Gudd
Aug 29th, 2001, 08:51 AM
I have this link here in a column, how do I not have the link underline under data_Sequence?

<td nowrap><p class="#data_LinkClass#" #data_LinkDisabled#="CallPage('ABLPrepaymentWC.ASP?WCI=MaintainPrepaymentRequest&WCE=Amend', '#data_PrepaymentRequestID#')">#data_PrepaymentRequestID# #data_Sequence#</p>

scoutt
Aug 29th, 2001, 10:52 AM
because it is not in a <a href> tag.

Bonker Gudd
Aug 29th, 2001, 11:04 AM
:confused: So, err, where does this <a href> tag go?

This is what it looks like...
http://www.vbforums.com/attachment.php?s=&postid=504553
I just want the underline to stop before the "01".

kayoca
Aug 30th, 2001, 05:17 AM
If you want to use an underline you can use the U tag like this

<u>1</u>&nbsp;01

Or if you need a link. you can do it like this

<a href="http://www.vbdungeon.net">1</a>&nbsp;01

scoutt
Aug 30th, 2001, 10:02 AM
Originally posted by Bonker Gudd
:confused: So, err, where does this <a href> tag go?

This is what it looks like...
http://www.vbforums.com/attachment.php?s=&postid=504553
I just want the underline to stop before the "01".
so what is producing the 1 and 01?
just a guess since I never seen that many # signs in one sentence

<td nowrap><p class="#data_LinkClass#" <a href="#" #data_LinkDisabled#="CallPage('ABLPrepaymentWC.ASP?WCI=MaintainPrepaymentRequest&WCE=Amend', '#data_PrepaymentRequestID#')">#data_PrepaymentRequestID#</a> #data_Sequence#</p>

Bonker Gudd
Aug 30th, 2001, 10:52 AM
The stuff between the #'s gets replaced by my WebClass, here's the actual HTML:<td nowrap>
<p class="DummyLink" onClick="CallPage('ABLPrepaymentWC.ASP?WCI=MaintainPrepaymentRequest&WCE=Amend','1')">1 01</p>
</td>

scoutt
Aug 30th, 2001, 11:04 AM
well I was close.

<td nowrap>
<p class="DummyLink" onClick="CallPage('ABLPrepaymentWC.ASP?WCI=MaintainPrepaymentRequest&WCE=Amend','1')">1 </p>01
</td>

don't need the href tag just put the 01 outside the closing </p>

sorry I was think you need something else.

Bonker Gudd
Aug 30th, 2001, 11:11 AM
Originally posted by scoutt don't need the href tag just put the 01 outside the closing[/B]That does it, but it wraps the 01 down onto the next line, I don't want that :(

scoutt
Aug 30th, 2001, 01:25 PM
that is because you are using the <p> tage which is a paragraph break, which is the same as 2 <br> together.

you might have to use the <a href> tag and not the <p> tag.

Bonker Gudd
Aug 31st, 2001, 03:22 AM
OK, I'll try that. Cheers for the help :cool: