Re: HTML 101-its friday

2006-03-31 Thread Rob Wilkerson
#anchorName Or, in a CF page, ##anchorName should do it. On 3/31/06, Eric J. Hoffman [EMAIL PROTECTED] wrote: Have some dynamic links: a href=index_lab.cfm?ppid=#lpid#id=#url.id#gr=#url.gr#la=#url.la# class=lablinkblue Want it to go to the section of the page by using the old a

RE: HTML 101-its friday

2006-03-31 Thread Andy Matthews
, 2006 9:25 AM To: CF-Talk Subject: HTML 101-its friday Have some dynamic links: a href=index_lab.cfm?ppid=#lpid#id=#url.id#gr=#url.gr#la=#url.la# class=lablinkblue Want it to go to the section of the page by using the old a name=woohoocontent here, we /a in the page... I plum forgot how

Re: HTML 101-its friday

2006-03-31 Thread Ray Champagne
I think you just need to add an anchor to the end of your URL string: a href=index_lab.cfm?ppid=#lpid#id=#url.id#gr=#url.gr#la=#url.la###woohoo class=lablinkblue (assumed that you have the a tag surrounded by cfoutput) Is that what you're asking? Eric J. Hoffman wrote: Have some dynamic

RE: HTML 101-its friday

2006-03-31 Thread Eric J. Hoffman
request a hard-copy version. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 9:29 AM To: CF-Talk Subject: RE: HTML 101-its friday a name=youranchorlink/a a href=#youranchorlinkyour

RE: HTML 101-its friday

2006-03-31 Thread Eric J. Hoffman
] Sent: Friday, March 31, 2006 9:34 AM To: CF-Talk Subject: Re: HTML 101-its friday I think you just need to add an anchor to the end of your URL string: a href=index_lab.cfm?ppid=#lpid#id=#url.id#gr=#url.gr#la=#url.la###woo hoo class=lablinkblue (assumed that you have the a tag surrounded

Re: HTML 101-its friday

2006-03-31 Thread Rob Wilkerson
Oh, and I believe you need to add the anchor at the end of the path, not the query string. :-) a href=index_lab.cfm##woohoo?ppid=#lpid#id=#url.id#gr=#url.gr#la=#url.la###woohoo class=lablinkblue On 3/31/06, Ray Champagne [EMAIL PROTECTED] wrote: I think you just need to add an anchor to the

Re: HTML 101-its friday

2006-03-31 Thread Ray Champagne
Actually, I have this working the way that I said on one of my sites. Not sure about your method, but I know mine works. Rob Wilkerson wrote: Oh, and I believe you need to add the anchor at the end of the path, not the query string. :-) a