RE: Problem with Anchor Tag in CF

2008-05-01 Thread Dave Watts
> yes i under stand what you are trying to tell me, but i cant 
> change the format because its client requirement and this was 
> return by some one before and it was not changed , they need 
> this like this only.
> 
> is there any way to do or i should change the name it self as 
> you said 

You should buy your client an HTML book, because what you're doing is in
violation of the specification that describes how to create named anchors
and URL fragments. While it may work in some browsers, it can't be forced to
work in browsers that conform to the specification.

Is this supposed to go to a named anchor, or is it actually supposed to
redirect to another file? If the former, can't you just replace the slashes
with underscores or something, in both the link and the named anchor?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/ 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304598
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Problem with Anchor Tag in CF

2008-05-01 Thread Phillip Vector
Tell the client that it needs to change to work and stop picking
clients that require you to do such crazy things. :)

On Thu, May 1, 2008 at 10:33 AM, shariff sml <[EMAIL PROTECTED]> wrote:
> Hi Dave
>
>  yes i under stand what you are trying to tell me, but i cant change the 
> format
>  because its client requirement and this was return by some one before and it 
> was not changed , they need this like this only.
>
>  is there any way to do or i should change the name it self as you said
>
>
>  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304597
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Problem with Anchor Tag in CF

2008-05-01 Thread shariff sml
Hi Dave 

yes i under stand what you are trying to tell me, but i cant change the format 
because its client requirement and this was return by some one before and it 
was not changed , they need this like this only.

is there any way to do or i should change the name it self as you said 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304595
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Problem with Anchor Tag in CF

2008-05-01 Thread Phillip Vector
It's bad formating. Dave is right. If your anchor is named
"developer/ADF/adf_overview.htm", rename it to "ADFOverview" or
something.

As the browser sees it, you don't have a proper formated tag. Sorry. I
don't see Firefox (it's spelled Mozilla) or Safari supporting this.
Can you put the page on the live server so we can see?

On Thu, May 1, 2008 at 9:43 AM, shariff sml <[EMAIL PROTECTED]> wrote:
> Hello Phillip
>
>
>  http://www.MyClass.com/radio4/schedule.htm
>
>  is the index of the page so that i should refer to this index first and then 
> to the internal link
>
>
>  ##developer/ADF/adf_overview.htm
>
>  but i am confused why IE is not supporting , this was working before but i 
> should made some changes in the link directory so i changed after that i am 
> not able to c only in IE , But in all other browsers like Morzila and safari 
> its working
>
>  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304590
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Problem with Anchor Tag in CF

2008-05-01 Thread shariff sml
Hello Phillip 

http://www.MyClass.com/radio4/schedule.htm

is the index of the page so that i should refer to this index first and then to 
the internal link 

##developer/ADF/adf_overview.htm

but i am confused why IE is not supporting , this was working before but i 
should made some changes in the link directory so i changed after that i am not 
able to c only in IE , But in all other browsers like Morzila and safari its 
working 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304589
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Problem with Anchor Tag in CF

2008-05-01 Thread Dave Watts
> Hi every one i have Problem with Anchor tag using in CF 
> 
> 
>  href="http://www.MyClass.com/radio4/schedule.htm##developer/AD
> F/adf_overview.htm"> Some Text- display from 
> fragmentation id position in file with this absolute address.
> 
> 
> I know that this is not related to CF and its simple but i am 
> bcoming lame about this 
> 
> It works with Morgila, but in IE it refers only up to Schedule.htm

You're using the HTML anchor incorrectly. You can't specify an anchor URL
fragment that points to another page.

Good: http://www.myclass.com/radio4/schedule.htm#top <-- this will take the
user to the named anchor "top" presumably at the top of the page

Bad:
http://www.myclass.com/radio4/schedule.htm#developer/ADF/adf_overview.htm
<-- this points to a second file, and will be ignored by the browser.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
http://training.figleaf.com/

WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
http://www.webmaniacsconference.com/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304588
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Problem with Anchor Tag in CF

2008-05-01 Thread Phillip Vector
Well... Yeah...

Why are you refering to 2 htm files? :)

On Thu, May 1, 2008 at 9:21 AM, shariff sml <[EMAIL PROTECTED]> wrote:
> Hi every one i have Problem with Anchor tag using in CF
>
>  
>   href="http://www.MyClass.com/radio4/schedule.htm##developer/ADF/adf_overview.htm";>
>  Some Text- display from fragmentation id position in file with this 
> absolute address.
>  
>
>  I know that this is not related to CF and its simple but i am bcoming lame 
> about this
>
>  It works with Morgila, but in IE it refers only up to Schedule.htm
>
>  Can any one tell me whats happning here
>
>  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304587
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Problem with Anchor Tag in CF

2008-05-01 Thread shariff sml
Hi every one i have Problem with Anchor tag using in CF 


http://www.MyClass.com/radio4/schedule.htm##developer/ADF/adf_overview.htm";>
 Some Text- display from fragmentation id position in file with this 
absolute address.


I know that this is not related to CF and its simple but i am bcoming lame 
about this 

It works with Morgila, but in IE it refers only up to Schedule.htm

Can any one tell me whats happning here 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304586
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4