Re: Passing URL variables to cfwindow?

2008-11-06 Thread Pete Ruckelshaus
Won't that create an excessive number of instances of cfwindow? I was trying to be efficient by creating a single instance and then passing the variable to it. Pete On Wed, Nov 5, 2008 at 9:51 PM, Rob Parkhill [EMAIL PROTECTED] wrote: Pete, The following works no problem for me cfwindow

Re: Passing URL variables to cfwindow?

2008-11-06 Thread Pete Ruckelshaus
OK, figured out a solution: a href=javascript:ColdFusion.Window.show('mywin');ColdFusion.navigate('test2.cfm?a=1','mywin');Show/a cfwindow source=test2.cfm width=350 height=350 name=mywin initshow=false modal=true title=Edit center=true / Basically, create the window, then navigate to the

Re: Passing URL variables to cfwindow?

2008-11-06 Thread Rob Parkhill
Cool Pete, I think that I will just have to borrow that Rob On Thu, Nov 6, 2008 at 5:17 PM, Pete Ruckelshaus [EMAIL PROTECTED]wrote: OK, figured out a solution: a href=javascript:ColdFusion.Window.show('mywin');ColdFusion.navigate('test2.cfm?a=1','mywin');Show/a cfwindow

Passing URL variables to cfwindow?

2008-11-05 Thread Pete Ruckelshaus
I'd like to use the cfwindow tag to pop up a modal window that contains a form that allows me to edit a specific record. This window will be spawned via a normal hyperlink (i.e. a href=javascript:ColdFusion.Window.show('mywin');Show /a ) However, I would like to pass a record id in to this window

Re: Passing URL variables to cfwindow?

2008-11-05 Thread Rob Parkhill
Pete, The following works no problem for me cfwindow name=job#jobID# height=500 width=600 draggable=true closable=true title=Job Information source=job_view.cfm?id=#jobid# resizable=true / I have it nested inside a loop that loops a query for job data. Rob On Wed, Nov 5, 2008 at 9:18 PM, Pete

Re: Passing URL variables to cfwindow?

2008-11-05 Thread Rob Parkhill
And it gets called using the following, damn send is so tempting to hit a href=# onClick=javacript:ColdFusion.Window.show('job#jobID#') Click here for more /a Rob On Wed, Nov 5, 2008 at 9:51 PM, Rob Parkhill [EMAIL PROTECTED]wrote: Pete, The following works no problem for me cfwindow

Re: passing URL variables to a cfwindow

2008-02-12 Thread Steve Good
This definitely got me going in the right direction, however, I am still having trouble with this. Here is what I am trying to do. I have a page that is populated by looping through a query. I am showing an image dynamically based on the data returned by the query. When a user clicks the

Re: passing URL variables to a cfwindow

2008-02-12 Thread Don L
Glad you worked it out. Ok, I have my initial problem solved with passing data to my cfwindow. Thanks for the help! Starting a new thread for the next road block I am having. ~Steve Steve Good wrote: ~| Adobe®

Re: passing URL variables to a cfwindow

2008-02-12 Thread Steve Good
Ok, I have my initial problem solved with passing data to my cfwindow. Thanks for the help! Starting a new thread for the next road block I am having. ~Steve Steve Good wrote: This definitely got me going in the right direction, however, I am still having trouble with this. Here is what

Re: passing URL variables to a cfwindow

2008-02-11 Thread Don L
Yes, the simpliest way looks like this cfwindow title=My Cool Window source=neatStuff.cfm?param1=value1/ But probaby you were looking for something more complexed? Yes? Like from cfpod or another cfwindow? And that's doable as well. The problem in my experience lies in multiple browser

RE: Pound signs in URL variables?

2008-02-10 Thread Dave Watts
The trick is, I'm finding that there are data bits out there that have a pound sign in them. An example I'm working on now - one variable has the value '!$#$!'. (Don't ask. Long story.) But when doing a dump of the URL structure, it only shows '!$'. The hash character is a URL

Pound signs in URL variables?

2008-02-10 Thread Scott Weikert
Hey gang - Got a little personal side project I've been working on lately, and I've come across a small stumper. What I have is a GreaseMonkey (FF plug-in) script that will do a screenscrape of a particular page, package up the needed data into a query string, and push it via HTTP to my CF

Re: passing URL variables to a cfwindow

2008-02-09 Thread Jose Diaz
any luck on this steve? I noticed the same problem but have not had time to delve any deeper. Jose On Feb 9, 2008 12:54 AM, Steve Good [EMAIL PROTECTED] wrote: Is it possible to pass variables through the URL scope to a cfwindow? If so, how? Thanks! :) -- ~Steve

Re: passing URL variables to a cfwindow

2008-02-09 Thread Steve Good
No luck yet, but the other person working on the code may have found a solution. I have not yet seen the code yet though. ~Steve On Feb 9, 2008, at 8:56 AM, Jose Diaz [EMAIL PROTECTED] wrote: any luck on this steve? I noticed the same problem but have not had time to delve any deeper.

passing URL variables to a cfwindow

2008-02-08 Thread Steve Good
Is it possible to pass variables through the URL scope to a cfwindow? If so, how? Thanks! :) -- ~Steve ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Passing URL in URL variables and CFLOCATION

2007-12-03 Thread Steve Piotrowicz
Hi All, thanks for any help on this topic. I'm working on a project for a client where I need to build some simple tracking from and adwords click to a landing page and need to incorporate google tracking and affiliate links. I'm working with 3 pages/urls. 1. Landingpage.cfm 2. go.cfm 3. Final

url variables not picked up in url with # anchor

2007-11-15 Thread Will Swain
Can anyone help with this. This may be common knowledge but I've never come up against it before. http://www.site.com/page.cfm#test?foo=1 CF doesn't see the url variable on the end of the url. The CGI.ScriptName doesn't include it, in fact I can't see it included in any CGI variable. Is there

RE: **SPAM** url variables not picked up in url with # anchor

2007-11-15 Thread Robert Harrison
Great advertising can't be either/or... It must be . -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 8:49 AM To: CF-Talk Subject: **SPAM** url variables not picked up in url with # anchor Can anyone help with this. This may be common

Re: url variables not picked up in url with # anchor

2007-11-15 Thread Dominic Watson
Anything after the # will be treated as the id of the anchor. So, in order for that url to work as you want you will need: http://www.site.com/page.cfm?foo=1#test Regards, Dominic On 15/11/2007, Will Swain [EMAIL PROTECTED] wrote: Can anyone help with this. This may be common knowledge but

RE: url variables not picked up in url with # anchor

2007-11-15 Thread Andy Matthews
Try putting the anchor at the end, after the URL vars? -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 7:49 AM To: CF-Talk Subject: url variables not picked up in url with # anchor Can anyone help with this. This may be common knowledge

RE: url variables not picked up in url with # anchor

2007-11-15 Thread Will Swain
Problem is, the url variable is appended programatically to the link, which is added by the user. Guess I'll need some code to look for the existence of a pound sign, and if it finds one to split the string, insert the url variable and put it back together again. Cheers Will

Re: url variables not picked up in url with # anchor

2007-11-15 Thread Ben Doom
Off the top of my head, I think the #anchor has to come last. Everything after the pound sign is read as part of the anchor directive. So, page.cfm?foo=1#test should work. Not tested, YMMV. --Ben Doom Will Swain wrote: Can anyone help with this. This may be common knowledge but I've never

RE: url variables not picked up in url with # anchor

2007-11-15 Thread Bobby Hartsfield
The anchor goes at the very end of the url (after any query string) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 8:49 AM To: CF-Talk Subject: url variables

application.log, search engines and url variables...

2007-10-24 Thread Michael Appenzellar
I am having some instability issues with my coldFusion server. What I think is happening is that search enginge bots are going through pages that require a variable for example but being it doesn't have it, it creates an error that say ID isn't defined for example. This fills up application.log

application.log, search engines and url variables...

2007-10-24 Thread Mike Appenzellar
I am having some instability issues with my coldFusion server. What I think is happening is that search enginge bots are going through pages that require a variable for example but being it doesn't have it, it creates an error that say ID isn't defined for example. This fills up

Re: cfcontent excel session and url variables

2007-04-13 Thread William Burba
Good Afternoon, Thank you all for your replies. Initially, taking out the cfcontent tags did not yield any negative results. The page came back fine to the browser. Putting the tags back on, and looking at the log files more or less confirmed what was happening, I just don't know why. There

RE: cfcontent excel session and url variables

2007-04-08 Thread Jaime Metcher
Also check your exception log. Even if an error does make it to the browser it should be logged there. Jaime Metcher -Original Message- From: Kris Jones [mailto:[EMAIL PROTECTED] Sent: Saturday, 7 April 2007 6:58 AM To: CF-Talk Subject: Re: cfcontent excel session and url variables

cfcontent excel session and url variables

2007-04-06 Thread William Burba
A question relating to cfcontent and session variables, with a hint of URL variables. We are migrating from a relatively open system to one that has a login and session management. We have stumbled across something that seems to be behaving oddly, though I don't know why. We have

Re: cfcontent excel session and url variables

2007-04-06 Thread Kris Jones
, you should probably wrap your URL variables in a urlencodedformat() for good measure (we also encrypt ours, but depending on your requirements that may not be necessary). Cheers, Kris A question relating to cfcontent and session variables, with a hint of URL variables. We are migrating from

Re: hiding url variables

2007-02-01 Thread Richard White
thanks for all your replies. I think your right i will have to use hidden fields and form posts as much as possible. and when i need to use the URL then i will use the encrypt / decrypt link that was added in the replies. this is very useful, thanks very much for all your help

Re: hiding url variables

2007-01-28 Thread Scott Pinkston
This page describes encrypting all of the url variables so ?myurl=1myrul2-blah would display like ?43924j423oi490fsd89yg438 The next page decrypts the variables and puts them back into the url scope. http://www.cfdan.com/posts/Securing_your_applications_URL_variables.cfm Might help. How

Re: hiding url variables

2007-01-28 Thread John C. Bland II
/28/07, Scott Pinkston [EMAIL PROTECTED] wrote: This page describes encrypting all of the url variables so ?myurl=1myrul2-blah would display like ?43924j423oi490fsd89yg438 The next page decrypts the variables and puts them back into the url scope. http://www.cfdan.com/posts

hiding url variables

2007-01-27 Thread Richard White
Hi, i have a cfm page that uses a javascript function to append a variable to a url. I then use the coldfusion url variable set to collect the variable in the receiving cfm page. however, the variable data is being displayed in the address bar in the browser. is there anyway to hide the

Re: hiding url variables

2007-01-27 Thread Doug Brown
27, 2007 4:44 PM Subject: hiding url variables Hi, i have a cfm page that uses a javascript function to append a variable to a url. I then use the coldfusion url variable set to collect the variable in the receiving cfm page. however, the variable data is being displayed in the address bar

Re: hiding url variables

2007-01-27 Thread Qasim Rasheed
. - Original Message - From: Richard White [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Saturday, January 27, 2007 4:44 PM Subject: hiding url variables Hi, i have a cfm page that uses a javascript function to append a variable to a url. I then use the coldfusion url

Re: hiding url variables

2007-01-27 Thread Ben Doom
Off the top of my head, you have two options. 1) A form post. This pushes the information in the request header instead of the URL. 2) A redirect. Use cflocation or similar to move from your receiving page to the display page. HTH. --Ben Richard White wrote: Hi, i have a cfm page that

RE: hiding url variables

2007-01-27 Thread Terry Troxel
How about instead of appending the variable and using a hidden field. Terry -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Saturday, January 27, 2007 3:44 PM To: CF-Talk Subject: hiding url variables Hi, i have a cfm page that uses a javascript function

url variables

2006-11-02 Thread Richard White
hi, i have a page that submits values to a form as follows: var sendString = rowNum= + taskGrid.getRowsNum(); for (i=1;i=taskGrid.getRowsNum();i++) { sendString = sendString + Task + a += + taskGrid.cells(i, 1).getValue(); a++; } (new Image()).src = updater.cfm? + sendString; Therefore the

RE: url variables

2006-11-02 Thread Peterson, Chris
Some people will no doubt show you a better way, but the quick a dirty way is to do this: isDefined(evaluate(url.Task#i#)) Chris -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Thursday, November 02, 2006 12:57 PM To: CF-Talk Subject: url variables hi, i have

Re: url variables

2006-11-02 Thread Charlie Hanlon
try isdefined(url.Task#i#) hth Charlie Hanlon - Original Message - From: Richard White [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, November 02, 2006 12:57 PM Subject: url variables hi, i have a page that submits values to a form as follows: var

Re: url variables

2006-11-02 Thread Charlie Griefer
cfif isDefined(URL.task#i#) or cfif structKeyExists(URL, task#i#) On 11/2/06, Richard White [EMAIL PROTECTED] wrote: hi, i have a page that submits values to a form as follows: var sendString = rowNum= + taskGrid.getRowsNum(); for (i=1;i=taskGrid.getRowsNum();i++) { sendString =

Re: url variables

2006-11-02 Thread Teddy Payne
The URL scope is stored as a structure. You can use cfloop to loop over a collection of the variables. For example: cfset url.task1 = 1 cfset url.task2 = 2 cfset url.task3 = 1 cfset url.dog = dog cfloop collection=#url# item=key cfif FindNoCase(task,key) cfoutput#key# : #url[key]#br

Re: url variables

2006-11-02 Thread Rob Wilkerson
This should do it: isDefined ( 'URL[task 1]' ) On 11/2/06, Richard White [EMAIL PROTECTED] wrote: hi, i have a page that submits values to a form as follows: var sendString = rowNum= + taskGrid.getRowsNum(); for (i=1;i=taskGrid.getRowsNum();i++) { sendString = sendString + Task + a += +

Re: url variables

2006-11-02 Thread Richard White
thanks for your replies, thats brilliant i especially like the cfloop through the structure thanks teddy ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your

Re: url variables

2006-11-02 Thread Richard White
forgive me for my ignorance but i have managed to get it working and going into the loop with cfif isdefined(url.Milestone#i#) but now when i want to get the value for it i am also getting errors for example i am trying cfoutputurl.Milestone#i#/cfoutput although no error are occuring it is not

Re: url variables

2006-11-02 Thread Charlie Griefer
#URL[Milestone i]# On 11/2/06, Richard White [EMAIL PROTECTED] wrote: forgive me for my ignorance but i have managed to get it working and going into the loop with cfif isdefined(url.Milestone#i#) but now when i want to get the value for it i am also getting errors for example i am trying

Re: url variables

2006-11-02 Thread Charlie Hanlon
try this. cfoutput#url[Milestone i]#/cfoutput hth charlie - Original Message - From: Richard White [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, November 02, 2006 4:01 PM Subject: Re: url variables forgive me for my ignorance but i have managed

Re: url variables

2006-11-02 Thread Richard White
#URL[Milestone i]# perfect thanks charlie ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

Re: Getting the last url variables

2006-08-22 Thread Kris Jones
Not sure what your menu issue is, but to get the last URL variable if your recordset is empty might look something like this: cfset mylasturlvar = / cfif rcdset.recordcount is 0 cfset mylasturlvar = listlast(cgi.query_string,=) / /cfif Cheers, Kris I am trying to find out how to set the

RE: Getting the last url variables

2006-08-22 Thread Adkins, Randy
,) / cfset listgetat(mylasturlvar,1,=) /cfif -Original Message- From: Kris Jones [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 22, 2006 8:04 AM To: CF-Talk Subject: Re: Getting the last url variables Not sure what your menu issue is, but to get the last URL variable if your recordset is empty

Re: Getting the last url variables

2006-08-22 Thread Doug Brown
: Tuesday, August 22, 2006 6:03 AM Subject: Re: Getting the last url variables Not sure what your menu issue is, but to get the last URL variable if your recordset is empty might look something like this: cfset mylasturlvar = / cfif rcdset.recordcount is 0 cfset mylasturlvar = listlast

Getting the last url variables

2006-08-21 Thread Doug Brown
I am trying to find out how to set the last url variable on a page if the query I am running has no recordcount. Basically I am populating a table with categories from the database and when there is no more records the menu dissapears. This is not what I want. When there is no records for a

RE: adding to URL variables

2006-07-21 Thread Ben Nadel
the space cowboy. Some people call me the gangster of love. -Original Message- From: Alan Dunn [mailto:[EMAIL PROTECTED] Sent: Thursday, July 20, 2006 6:29 PM To: CF-Talk Subject: adding to URL variables I need to add to a URL string which is: SearchResults.cfm?CategoryName

RE: adding to URL variables

2006-07-21 Thread Alan Dunn
I figured it out. Funny how when you leave a problem alone your brain tells you the answer. Thanks though -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Friday, July 21, 2006 6:08 AM To: CF-Talk Subject: RE: adding to URL variables Maybe I am not understanding

adding to URL variables

2006-07-20 Thread Alan Dunn
I need to add to a URL string which is: SearchResults.cfm?CategoryName=AgricultureGrantDesc=homeSubmit=Search The find n' next link on the searchresults.cfm page is a href=#CGI.script_name#?startRow=#startRowBack# How would you do that?

Re: onRequestStart problem with url variables

2006-03-07 Thread Raymond Camden
is correct: dance-pictures/2005-BLine.jpg However, to help pages get indexed I've changed all my URL variables to to look like: images.cfm/year/2005 When I do that, view source looks OK on the page, but the path for the same image above is now showing as: images.cfm/year/dance

onRequestStart problem with url variables

2006-03-06 Thread Les Mizzell
like it should. An image on the page will display correctly and the path is correct: dance-pictures/2005-BLine.jpg However, to help pages get indexed I've changed all my URL variables to to look like: images.cfm/year/2005 When I do that, view source looks OK on the page, but the path

Re: onRequestStart problem with url variables

2006-03-06 Thread Les Mizzell
cffunction name=onRequestStart returnType=boolean output=true !--- Display our Site Header at top of every page --- cfinclude template=SiteHeader.cfm cfreturn true /cffunction images.cfm/year/2005 OK, I understand what it's doing - the onRequestStart is reading the

URL Variables

2005-10-18 Thread B G
Is this possible? I want to pass a string containing URL variables through a URL. For example: www.domain.com/page.cfm?newURL=www.domain.com/page2.cfm?var1=avar2=b In other words on page2.cfm I should reference #URL.newURL# outputs www.domain.com/page2.cfm?var1=avar2=b Thanks

Re: URL Variables

2005-10-18 Thread Michel Deloux
You can encrypt newurl value and decrypt it in your action page. Simple and cool. Or use session vars to store that url vars. Cheers. MD 2005/10/18, B G [EMAIL PROTECTED]: Is this possible? I want to pass a string containing URL variables through a URL. For example: www.domain.com

Re: URL Variables

2005-10-18 Thread Charlie Griefer
containing URL variables through a URL. For example: www.domain.com/page.cfm?newURL=www.domain.com/page2.cfm?var1=avar2=b In other words on page2.cfm I should reference #URL.newURL# outputs www.domain.com/page2.cfm?var1=avar2=b Thanks

Re: URL Variables

2005-10-18 Thread Jerry Johnson
) :) On 10/18/05, B G [EMAIL PROTECTED] wrote: Is this possible? I want to pass a string containing URL variables through a URL. For example: www.domain.com/page.cfm?newURL=www.domain.com/page2.cfm?var1=avar2=b In other words on page2.cfm I should reference #URL.newURL# outputs

RE: URL Variables

2005-10-18 Thread Bobby Hartsfield
://acoderslife.com -Original Message- From: B G [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 2005 5:42 PM To: CF-Talk Subject: URL Variables Is this possible? I want to pass a string containing URL variables through a URL. For example: www.domain.com/page.cfm?newURL

RE: URL Variables

2005-10-18 Thread B G
Thanks! From: Bobby Hartsfield [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com To: CF-Talk cf-talk@houseoffusion.com Subject: RE: URL Variables Date: Tue, 18 Oct 2005 18:26:29 -0400 Urlencodedformat() everything after '?newURL=' And then urlDecode(url.newurl) when you need to pull

Re: filtering results based on url variables

2005-08-05 Thread Cameron Johnson
In case anyone is interested, or if someone digs into the archives for this topic, a friend helped me work out a javascript solution. The function basics are: InvalidTag var urlfield= 'cfoutput#url.field#/cfoutput; function filter(param, value) { switch (param) { case 'field' : urlfield =

filtering results based on url variables

2005-08-01 Thread Cameron Johnson
Using a CFC, I've got a table of results from a getAllRecords method. I want to filter those results based on some variables that the user clicks on individually. So, in the getAllRecords method, my SELECT query will be: SELECT * FROM table WHERE value1 = #arguments.value1# cfif

Re: filtering results based on url variables

2005-08-01 Thread Barney Boisvert
How about in your filter code, you unset any variable before you set it. that's prevent the duplication, and let you keep the rest of the code as-is. Most likely that'd be in the code that renders the link for adding filter so that it doesn't contain another value for the same filter it'd be

Re: filtering results based on url variables

2005-08-01 Thread jonese
Hack option: if you know A == B then just do a listFirst(), or ListLast() :) otherwise you'll have to loop over the list and slam in an OR / AND to the SQL. jonese On 8/1/05, Cameron Johnson [EMAIL PROTECTED] wrote: Using a CFC, I've got a table of results from a getAllRecords method. I

RE: Sometimes form or url variables don't exist?

2005-06-21 Thread dswitzer
- From: Mike Klostermeyer [mailto:[EMAIL PROTECTED] Sent: Thursday, June 16, 2005 5:24 PM To: CF-Talk Subject: RE: Sometimes form or url variables don't exist? If he submitted the form as expected, then (for some reason) clicked on the address bar and hit go or enter, that could produce a get vs

Sometimes form or url variables don't exist?

2005-06-21 Thread Johnny Le
You should check: 1. to see if you use GET or POST method. If GET, only URL variables exists. 2. to see if you use cflocation or relocate (fusebox 4) anywhere in between two pages. 3. the meta tag to redirect the user to another page. Johnny I sometimes get errors from my application where

Re: Sometimes form or url variables don't exist?

2005-06-21 Thread S . Isaac Dealey
Moreover, if a form is posted with method=get any url variables provided in the action attribute of the form will not be passed to the action page... For example: form action=index.cfm?x=y method=get input type=hidden name=z value=z / /form When this form is submitted, only the z

Sometimes form or url variables don't exist?

2005-06-16 Thread Ryan Stille
I sometimes get errors from my application where it tries to use a value that should have been on the previous form page, but for some reason doesn't exist. Has anyone else run into this? I am using an older version of Fusebox, so Form.* and URL.* variables all get converted to the Attributes

RE: Sometimes form or url variables don't exist?

2005-06-16 Thread Mike Klostermeyer
Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: Thursday, June 16, 2005 3:22 PM To: CF-Talk Subject: Sometimes form or url variables don't exist? I sometimes get errors from my application where it tries to use a value that should have been on the previous form page, but for some

Re: Sometimes form or url variables don't exist?

2005-06-16 Thread Bryan Stevenson
Anyone know of a way around this, as I have had this problem in the past as well? Mike On the individual files I have a check for required varsif they don't exist I kick the user to page not found or information required by this page is missing pageand provide a link for them to

Re: Sometimes form or url variables don't exist?

2005-06-16 Thread Ray Champagne
scripts. Anyone know of a way around this, as I have had this problem in the past as well? Mike -Original Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: Thursday, June 16, 2005 3:22 PM To: CF-Talk Subject: Sometimes form or url variables don't exist? I sometimes get

RE: Sometimes form or url variables don't exist?

2005-06-16 Thread Ryan Stille
I know it's not a search engine because a user forwarded me a screen shot of the error. After looking closer at the log file, I see that he made a GET request to a page that should have been POSTed to. And the variables were not present in the query string. What would cause the browser to do a

RE: Sometimes form or url variables don't exist?

2005-06-16 Thread Mike Klostermeyer
:[EMAIL PROTECTED] Sent: Thursday, June 16, 2005 4:15 PM To: CF-Talk Subject: RE: Sometimes form or url variables don't exist? I know it's not a search engine because a user forwarded me a screen shot of the error. After looking closer at the log file, I see that he made a GET request to a page

RE: Passing URL variables in a dynamic form action

2005-01-03 Thread Martin Parry
-Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: 03 January 2005 06:44 To: CF-Talk Subject: Passing URL variables in a dynamic form action Sorry this has been covered before but I can't bring my addled brain to bear on the search to find it ... Perhaps some kind soul will help me

Re: Passing URL variables in a dynamic form action

2005-01-03 Thread Mike Kear
AH!! yes.. I KNEW it was right in front of me. But I'm sorry given it's a hot summer, and still new year hangover time, my brain just wasn't working. Thanks As to contract rates, I'm not a good person to ask. I'm bloody glad to see the back of 2004. It was the worst year financially for me

RE: Passing URL variables in a dynamic form action

2005-01-03 Thread Martin Parry
PROTECTED] Sent: 03 January 2005 13:30 To: CF-Talk Subject: Re: Passing URL variables in a dynamic form action AH!! yes.. I KNEW it was right in front of me. But I'm sorry given it's a hot summer, and still new year hangover time, my brain just wasn't working. Thanks As to contract rates, I'm

RE: Passing URL variables in a dynamic form action

2005-01-03 Thread Micha Schopman
Mike, Learn something extra .. do Java, do .NET, make handmade carpets.., really. According to the hot discussions ColdFusion seems to be pretty popular in the US, but overhere there is the same situation as you have .. ColdFusion .. euhm.. what is that? ;) Micha Schopman Project Manager

Passing URL variables in a dynamic form action

2005-01-02 Thread Mike Kear
Sorry this has been covered before but I can't bring my addled brain to bear on the search to find it ... Perhaps some kind soul will help me out .. I have a form that is to appear in various locations in a dynamic site, - i want to pass the current page, with url variables to the form

Flash Remoting NOT accepting numeric URL variables

2004-05-12 Thread Andrew Santos
Hello all, I have a .cfm page that has a Remoting-powered .swf file on it. The file works fine, but I need to filter the flash file based on a URL variable, say URL.id=2. The problem is, anytime ANY reference is made to a URL variable anywhere on the page, the file returns null values.

Re: Flash Remoting NOT accepting numeric URL variables

2004-05-12 Thread Adrocknaphobia
port/flash/ts/documents/flashvars.htm -Adam -Original Message- From: Andrew Santos [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 03:33 PM To: 'CF-Talk' Subject: Flash Remoting NOT accepting numeric URL variables Hello all, I have a .cfm page that has a Remoting-powe

FW: CFMX cannot handle charset for URL variables

2003-03-26 Thread Murat Demirci
Ignore this stupid mail.. -Original Message- From: Murat Demirci [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 1:26 PM To: '[EMAIL PROTECTED]' Subject: RE: CFMX cannot handle charset for URL variables If you ask what query_string causes the problem, the answer aþðgý. (Cf-talk

Re: CFMX cannot handle charset for URL variables

2003-03-25 Thread Jochem van Dieten
Murat Demirci wrote: I'm IE 6 with SP 1 and the option Send URL strings as unicode is checked. What do the URLEncoded query_strings look like? Both in the case it works and the case it doesn't work. Jochem ~| Archives:

RE: CFMX cannot handle charset for URL variables

2003-03-25 Thread Murat Demirci
I'm using setEncoding function, this is a new function? setEncoding function should affect the URLEncodedFormat function. -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 6:25 AM To: CF-Talk Subject: Re: CFMX cannot handle charset for URL

RE: CFMX cannot handle charset for URL variables

2003-03-25 Thread Murat Demirci
[mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 10:56 AM To: CF-Talk Subject: Re: CFMX cannot handle charset for URL variables Murat Demirci wrote: I'm IE 6 with SP 1 and the option Send URL strings as unicode is checked. What do the URLEncoded query_strings look like? Both in the case

Re: CFMX cannot handle charset for URL variables

2003-03-25 Thread Jochem van Dieten
Murat Demirci wrote: If you ask what query_string causes the problem, the answer a??g?. (Cf-talk list server doesn't allow non-ASCII characters) It does allow them, it just doesn't preserve the charset in the email headers (any progress on that Michael?). But how does the URLEncoded string

RE: CFMX cannot handle charset for URL variables

2003-03-24 Thread Murat Demirci
van Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 1:36 AM To: CF-Talk Subject: Re: CFMX cannot handle charset for URL variables Murat Demirci wrote: I'm working on IIS. WFM http://cfmx.oli.tudelft.nl/url.cfm Jochem

RE: CFMX cannot handle charset for URL variables

2003-03-24 Thread Murat Demirci
I'm not sure now whether it is a CF MX problem or not. It might be a browser problem. Any more ideas? -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2003 5:58 PM To: CF-Talk Subject: Re: CFMX cannot handle charset for URL variables Do you know

RE: CFMX cannot handle charset for URL variables

2003-03-24 Thread Murat Demirci
handle charset for URL variables When I type a unicode string in the form field and submit the form, there is no problem. However when I type the same unicode string in the address bar the problem occurs. Similarly when I use cflocation url=#unicode_string# in a page the problem repeats

RE: CFMX cannot handle charset for URL variables

2003-03-24 Thread Murat Demirci
I'm IE 6 with SP 1 and the option Send URL strings as unicode is checked. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 9:32 PM To: CF-Talk Subject: Re: CFMX cannot handle charset for URL variables Murat Demirci wrote: When I type

Re: CFMX cannot handle charset for URL variables

2003-03-24 Thread Jochem van Dieten
Murat Demirci wrote: When I type a unicode string in the form field and submit the form, there is no problem. However when I type the same unicode string in the address bar the problem occurs. Similarly when I use cflocation url=#unicode_string# in a page the problem repeats. Most likely you

Re: CFMX cannot handle charset for URL variables

2003-03-24 Thread Sean A Corfield
On Monday, Mar 24, 2003, at 11:31 US/Pacific, Murat Demirci wrote: cflocation url=url.cfm?text=#URLEncodedFormat(myUnicodeText,utf-8)# But why URLEncodedFormat doesn't use the utf-8 by default? Or why setEncoding(URL,UTF-8) function doesn't affect the URLEncodedFormat function? Backward

CFMX cannot handle charset for URL variables

2003-03-23 Thread Murat Demirci
Do you know CF MX has still problems with Unicode and other charsets. When I use setEncoding(url,utf-8), CF MX displays some double-byte (the unicode number over than 255) as nothing. It displays nothing. When I don't use the setEncoding function CF MX uses UTF-8 by default (documentation

Re: CFMX cannot handle charset for URL variables

2003-03-23 Thread jochemd
code of a page with both form and url variables that shows that a form works but URL variables not? What happens if you use the builtin webserver? Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: CFMX cannot handle charset for URL variables

2003-03-23 Thread Murat Demirci
code of a page with both form and url variables that shows that a form works but URL variables not? What happens if you use the builtin webserver? Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Re: CFMX cannot handle charset for URL variables

2003-03-23 Thread Jochem van Dieten
Murat Demirci wrote: I'm working on IIS. WFM http://cfmx.oli.tudelft.nl/url.cfm Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CFMX cannot handle charset for URL variables

2003-03-23 Thread Paul Hastings
Do you know CF MX has still problems with Unicode and other charsets. hardly any. When I use setEncoding(url,utf-8), CF MX displays some double-byte (the unicode number over than 255) as nothing. It displays nothing. show some code.

  1   2   >