[cfaussie] CF can't see URL querystrings after a # locator

2014-11-25 Thread Stephen M
I'll trying to explain with an example

If the link is this:
http://www.somebloodydomain.com/index.cfm##firstpart
Then the page will open and go to the object with the id of firstpart

If the link is this
http://www.somebloodydomain.com/index.cfm?errorMsg=invalidclolour=red
Then StructKeyExists(URL,errorMsg) will be true

But if the link looks like this
http://www.somebloodydomain.com/index.cfm##firstpart?errorMsg=invalidclolour=red
then StructKeyExists(URL,errorMsg) will be false

In other words ColdFusion does not recognise the URL querystring if it 
comes after the ##firstpart

Is there a way around this?

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


RE: [cfaussie] CF can't see URL querystrings after a # locator

2014-11-25 Thread Dale Fraser
I Think

 

http://www.somebloodydomain.com/index.cfm##firstpart?errorMsg=invalid 
http://www.somebloodydomain.com/index.cfm##firstpart?errorMsg=invalidclolour=red
 clolour=red

 

should be

 

http://www.somebloodydomain.com/index.cfm?errorMsg=invalid 
http://www.somebloodydomain.com/index.cfm?errorMsg=invalidclolour=red##firstpart
 clolour=red##firstpart

 

Regards

Dale Fraser

 

From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of 
Stephen M
Sent: Tuesday, 25 November 2014 11:48 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] CF can't see URL querystrings after a # locator

 

I'll trying to explain with an example

If the link is this:
http://www.somebloodydomain.com/index.cfm##firstpart
Then the page will open and go to the object with the id of firstpart

If the link is this
http://www.somebloodydomain.com/index.cfm?errorMsg=invalid 
http://www.somebloodydomain.com/index.cfm?errorMsg=invalidclolour=red 
clolour=red
Then StructKeyExists(URL,errorMsg) will be true

But if the link looks like this
http://www.somebloodydomain.com/index.cfm##firstpart?errorMsg=invalid 
http://www.somebloodydomain.com/index.cfm##firstpart?errorMsg=invalidclolour=red
 clolour=red
then StructKeyExists(URL,errorMsg) will be false

In other words ColdFusion does not recognise the URL querystring if it comes 
after the ##firstpart

Is there a way around this?

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie+unsubscr...@googlegroups.com .
To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com .
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.