Re: refresh session in ajax application

2009-03-21 Thread Richard White
ah, maybe its not the solution then, as we use JSMX too :) that's good to know though! glad to help, I use JSMX by http://www.lalabird.com/ that appends a date time string by design because IE browsers like to cache. Andrew. Thanks andrew, this makes a lot of sense we are sure this would

RE: refresh session in ajax application

2009-03-20 Thread Adrian Lynch
Is that method in the same application the rest of your code? It might be that you're calling code that's running in another app? Adrian -Original Message- From: Richard White [mailto:rich...@j7is.co.uk] Sent: 20 March 2009 14:25 To: cf-talk Subject: refresh session in ajax

Re: refresh session in ajax application

2009-03-20 Thread Andrew Grosset
could be a caching issue in that sometimes the browser will say Heh! I just got that identical response 5 mins ago from that url, no need to travel to the server here is the response I got last time! Try adding a date time string to the javascript that initiates the call. Test your function

Re: refresh session in ajax application

2009-03-20 Thread Richard White
Thanks andrew, this makes a lot of sense we are sure this would have solved it richard could be a caching issue in that sometimes the browser will say Heh! I just got that identical response 5 mins ago from that url, no need to travel to the server here is the response I got last time!

Re: refresh session in ajax application

2009-03-20 Thread Andrew Grosset
glad to help, I use JSMX by http://www.lalabird.com/ that appends a date time string by design because IE browsers like to cache. Andrew. Thanks andrew, this makes a lot of sense we are sure this would have solved it richard

Re: Refresh coldfusion form

2009-03-20 Thread Peter Boughton
Look at cflocation tag for redirecting back to the form. To have the form pre-populated, set values of each field to #form.whatever#. Use cfparam name=form.whatever default=/ to ensure variables exist before form is first submitted.

Re: Refresh a select list from child form

2006-06-05 Thread Jim Wright
On 6/5/06, Bruce Sorge [EMAIL PROTECTED] wrote: Is there a way to refresh a select list from a child form that is spawned from the page the select list is coming from? I have a list that if a vendor is not there, the user will click a link that opens a new window so they can add the vendor.

Re: refresh inserts my form content

2004-09-25 Thread dave
a lot of times i wont use a thank u page (ex: in the admin section) just have the form page -- process page then after all my code I cflocation them back to the previous page. SInce technically its the same as a new visitor going there and?or u can put some simple form check in as well such as

Re: refresh inserts my form content

2004-09-24 Thread daniel kessler
ok, charlie and Dave, that's a good point.Now, I'm gonna go do it, but my first thought is that when the user clicks the back button, it'll re-insert then. Greg, I'm rereading your solution again, but I'm not sure which primary key that you mean.For the actual answer/result into the results

RE: refresh inserts my form content

2004-09-24 Thread Steve Brownlee
and not the processing page. From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Friday, September 24, 2004 8:28 AM To: CF-Talk Subject: Re: refresh inserts my form content ok, charlie and Dave, that's a good point.Now, I'm gonna go do it, but my first thought is that when the user

RE: refresh inserts my form content

2004-09-24 Thread Micha Schopman
Or use a challenge response. This cannot be spoofed in any way. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast

Re: refresh inserts my form content

2004-09-24 Thread daniel kessler
cflocation actually does the equivalent of the _javascript_ function location.replace().The header actually gets redirected to a different page than the one originally requested.This means that on the thank you page, clicking the back button will take the user to the form page and not the

Re: refresh inserts my form content

2004-09-22 Thread Charlie Griefer
one solution is to use a 3-page approach. form page - update page - thank you page the form page is self-explanatory.contains your form. the update page has your updat query in it.once the query succeeds, do a cflocation to... the thank you page.this is the page that lets your user know the

Re: refresh inserts my form content

2004-09-22 Thread dave
of course it does that, but not a cfm prob a html prob what r utrying to do? see the info after it has been updated? if thats the case dont send it back to the form processing page, do u have the form and the processing code on the same page? -- Original Message

Re: refresh inserts my form content

2004-09-22 Thread Greg Morphis
before you insert your values into the database, check for the existence of the primary key.. On the form page you have your primary key.. it's passed as a hidden variable to the proccessing page. before you do your cfquery name=insert INSERT INTO TABLE_NAME VALUES() /cfquery check for the

RE: Refresh after an hour?

2004-07-15 Thread Micha Schopman
Check your requesttimeout settings in CF as well as you Webserver :-) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast

Re: Refresh after an hour?

2004-07-15 Thread Joe Rinehart
Bob, AFAIK, it can't be the server or MX - they can't push a new page out to your client. There could be something set in your page via a meta tag that would cause the page to refresh after an hour, but that would require the output buffer to have flushed that portion of the source to your

RE: Refresh Page

2004-04-23 Thread Tony Weeg
back is back. no refresh, unless it was from a form post that the page was generated. cflocation is back with a refresh. tony -Original Message- From: Frank Py [mailto:[EMAIL PROTECTED] Sent: Friday, April 23, 2004 12:36 PM To: CF-Talk Subject: Refresh Page Is there an easy way to

RE: Refresh left frame

2003-12-09 Thread Schuster, Steven
top.frames['FRAMENAME'].location=PAGE' or top.frames['FRAMENAME'].reload() or refresh(); -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 10:25 AM To: CF-Talk Subject: Refresh left frame Hi I have Login link on left frame which

RE: Refresh left frame

2003-12-09 Thread C. Hatton Humphrey
You should be able to use a _javascript_ call referencing the alternate frame's name and replacing the source with a new call that will cause the frame to load the new page. Hatton _ From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 10:25 AM To: CF-Talk

RE: Refresh left frame

2003-12-09 Thread John Beynon
Try; script language=_javascript_ type=text/_javascript_ parent.leftFrameName.location.reload(); /script in the successful login screen page that loads on the right. So when that loads it reloads the page in the left frame, john. -Original Message- From: Shahzad.Butt [mailto:[EMAIL

Re: Refresh application-scoped variables

2003-07-14 Thread Christian Cantrell
On Monday, July 14, 2003, at 01:19 AM, Sean A Corfield wrote: This is cool but what's to stop users from maliciously putting flushinit=true on the URL and repeatedly forcing your application to re-initialize? Just curious... The same thing that prevents users from maliciously screwing with

RE: Refresh application-scoped variables

2003-07-14 Thread Raymond Camden
PROTECTED] Sent: Monday, July 14, 2003 7:58 AM To: CF-Talk Subject: Re: Refresh application-scoped variables On Monday, July 14, 2003, at 01:19 AM, Sean A Corfield wrote: This is cool but what's to stop users from maliciously putting flushinit=true on the URL and repeatedly forcing

Re: Refresh application-scoped variables

2003-07-14 Thread fred fred
Christian Cantrell [EMAIL PROTECTED] wrote: The theory is that the general public wouldn't know that adding flushinit=true to your query string would reinitialize your app. Yes, security through obscurity is a higly recommended approach with many software vendors.

Re: Refresh application-scoped variables

2003-07-14 Thread Christian Cantrell
On Monday, July 14, 2003, at 07:26 PM, fred fred wrote: Yes, security through obscurity is a higly recommended approach with many software vendors. Hence the other, more secure options listed in my last email. Raymond mentioned a good one, as well. Christian

RE: Refresh application-scoped variables

2003-07-13 Thread Mike Townend
I usually do something like.. CFIF Not IsDefined(Application.DSN) OR IsDefined(URL.Reset) !--- Create all Application Vars --- /CFIF So if I need to reset an app then just call the page and append a ?reset=1 HTH -Original Message- From: Dina Hess [mailto:[EMAIL PROTECTED]

RE: Refresh application-scoped variables

2003-07-13 Thread Ben Doom
If you make a change to (for example) application.bob, then it is changed in all instances of the application. That's the point of the application scope. Or perhaps I'm misunderstanding the problem -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original

Re: Refresh application-scoped variables

2003-07-13 Thread Dina Hess
: Sunday, July 13, 2003 1:02 PM Subject: RE: Refresh application-scoped variables I usually do something like.. CFIF Not IsDefined(Application.DSN) OR IsDefined(URL.Reset) !--- Create all Application Vars --- /CFIF So if I need to reset an app then just call the page and append a ?reset=1 HTH

RE: Refresh application-scoped variables

2003-07-13 Thread Matt Robertson
-Original Message- From: Dina Hess [mailto:[EMAIL PROTECTED] Sent: Sunday, July 13, 2003 12:23 PM To: CF-Talk Subject: Re: Refresh application-scoped variables So you have a refresh application scope link in an admin area to set url.reset? Sounds like what I'm

Re: Refresh application-scoped variables

2003-07-13 Thread Dina Hess
change often. - Original Message - From: Matt Robertson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, July 13, 2003 2:30 PM Subject: RE: Refresh application-scoped variables Pardon the intrusion, but why would you refresh the application scope like this? Saving overhead

RE: Refresh application-scoped variables

2003-07-13 Thread Matt Robertson
cfset request.BaseURL=SystemDefaults.myBaseURL -Original Message- From: Dina Hess [mailto:[EMAIL PROTECTED] Sent: Sunday, July 13, 2003 12:49 PM To: CF-Talk Subject: Re: Refresh application-scoped variables No intrusion. I assume you mean why would I refresh the application scope

Re: Refresh application-scoped variables

2003-07-13 Thread Dina Hess
Well, I for one am grateful that you're a nerd. :) That's exactly the kind of information I was looking for. Thanks, Matt. - Original Message - From: Matt Robertson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, July 13, 2003 3:21 PM Subject: RE: Refresh application-scoped

Re: Refresh application-scoped variables

2003-07-13 Thread Dina Hess
oops...geek, that is. much cooler connotation. :) - Original Message - From: Dina Hess [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, July 13, 2003 3:35 PM Subject: Re: Refresh application-scoped variables Well, I for one am grateful that you're a nerd. :) That's exactly

Re: Refresh application-scoped variables

2003-07-13 Thread Sean A Corfield
On Sunday, Jul 13, 2003, at 13:21 US/Pacific, Matt Robertson wrote: Well, I don't fully understand where you're at applicationwise, but I try to use a cached query for most of my application-wide settings. Interesting. mm.com uses a couple of techniques: 1. 'constant' values are set in request

Re: Refresh application-scoped variables

2003-07-13 Thread Dina Hess
Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, July 13, 2003 4:09 PM Subject: Re: Refresh application-scoped variables On Sunday, Jul 13, 2003, at 13:21 US/Pacific, Matt Robertson wrote: Well, I don't fully understand where you're at applicationwise

RE: Refresh application-scoped variables

2003-07-13 Thread Matt Robertson
One thing I should probably mention is the maxrows setting in the code I put up is unnecessary. And usually I have a meaningful where clause in there so I can pull a record specific to a given area of a site pertinent to the settings I want. The only manual settings in the entire codebase are

Re: Refresh application-scoped variables

2003-07-13 Thread Christian Cantrell
On Sunday, July 13, 2003, at 01:45 PM, Dina Hess wrote: How can I programmatically refresh application-scoped variables whenever there's a change? DRK 3 contains the init tag, which is designed to be used in your Application.cfm file like this: cf_init cfset myVar = myValue/

Re: Refresh application-scoped variables

2003-07-13 Thread Sean A Corfield
On Sunday, Jul 13, 2003, at 20:16 US/Pacific, Christian Cantrell wrote: DRK 3 contains the init tag, which is designed to be used in your Application.cfm file like this: cf_init cfset myVar = myValue/ /cf_init The body of the init tag will only run the first time it is encountered.

RE: Refresh a frame

2003-07-01 Thread Bill Grover
I've used the following JavaScript function to change/refresh a frame from another frame: function ChangeFrame(toFrame, tcLocation) { toFrame.location.href = tcLocation; } HTH __ Bill Grover Supervisor MIS

RE: Refresh a frame

2003-07-01 Thread Paul Campano
Hi Bill. I put that javascript in the head of my page and tried calling it via ONclick and it doesn't workthe javascript error says location is null or not an object Here's my code: --This is in the head of the page script language=JavaScript !-- function ChangeFrame(toFrame, tcLocation)

Re: Refresh a frame

2003-07-01 Thread Christian Cantrell
It looks like you are missing a reference to top. Try something like this: function changeFrame(frame, url) { top[frame].location = url; } Call it like this: a href=javascript:changeFramePage('otherFrame','http://yahoo.com')Load Yahoo/a You can also just use the target attribute of

Re: Refresh a frame

2003-07-01 Thread S . Isaac Dealey
Incidentally if you really want to reload the frame rather than adding an entry in the browser's history stack, I'd use top[frame].location.reload(); instead of top[frame].location = url; It looks like you are missing a reference to top. Try something like this: function

RE: refresh form to anchor

2003-06-30 Thread Taco Fleur
You can still specify the anchor in a get operation, why would you not be able to? form method=get action=page.cfm#anchor name=frm1/form -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: Monday, 30 June 2003 7:09 PM To: CF-Talk Subject: refresh form to anchor Hi,

RE: refresh form to anchor

2003-06-30 Thread Hugo Ahlenius
WWW: http://www.grida.no - | -Original Message- | From: Taco Fleur [mailto:[EMAIL PROTECTED] | Sent: Monday, June 30, 2003 11:44 | To: CF-Talk | Subject: RE: refresh form to anchor | | | You can still

RE: refresh form to anchor

2003-06-30 Thread Sicular, Alexander
Hugo, a name=#myquery.recordID#/a form action=myactionpage.cfm?suff=1somemore=2###query.recordID# Remember to escape the pounds if you have your form in a cfoutput... Gl, alex -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 5:09 AM To:

Re: Refresh error on CFMX...

2003-02-13 Thread Jochem van Dieten
Tyler Silcox wrote: Does anyone else get the following error everytime they change code and hit refresh? Index: 219, Size: 194 The Error Occurred in Z:\somedomain\fbx_fusebox30_cf50.cfm: line 159 If the error continues with something about an array index out of range during

RE: Refresh error on CFMX...

2003-02-13 Thread Barney Boisvert
Yeah, I get that a lot. Haven't been able to pin down any specific cause. Very annoying, although it only happens when code changes so it doesn't affect production, thank god. Any macromedians out there with some insight? -Original Message- From: Tyler Silcox [mailto:[EMAIL

Re: Refresh error on CFMX...

2003-02-13 Thread Sean A Corfield
On Thursday, Feb 13, 2003, at 13:07 US/Pacific, Barney Boisvert wrote: Yeah, I get that a lot. Haven't been able to pin down any specific cause. Very annoying, although it only happens when code changes so it doesn't affect production, thank god. Any macromedians out there with some

RE: refresh iframe

2002-12-18 Thread Rob Rohan
If I remember correctly iframes have an href property you can set to change/update the page. Like an image. i.e. ..matchList.href = 'blah.html' this is just off the top of my head though so I could be crazy wrong. Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia

RE: refresh iframe

2002-12-18 Thread Rob Rohan
Actually I think it src...? Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: E. Keith Dodd [mailto:[EMAIL PROTECTED]] ~| Archives:

RE: refresh iframe

2002-12-18 Thread Costas Piliotis
... -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 1:46 PM To: CF-Talk Subject: RE: refresh iframe If I remember correctly iframes have an href property you can set to change/update the page. Like an image. i.e. .matchList.href = 'blah.html

RE: refresh iframe

2002-12-18 Thread Matthew Walker
document.all.item('matchList').src = http://...; where matchList is the iframe's id. -Original Message- From: E. Keith Dodd [mailto:[EMAIL PROTECTED]] Sent: Thursday, 19 December 2002 10:18 a.m. To: CF-Talk Subject: OT: refresh iframe Have 2 iframes in a page: iframe names are

Re: refresh iframe

2002-12-18 Thread E. Keith Dodd
updating within matchDetail, want to refresh matchList's template Keith - Original Message - From: Matthew Walker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, December 18, 2002 4:51 PM Subject: RE: refresh iframe document.all.item('matchList').src = http://...; where

RE: refresh iframe

2002-12-18 Thread Matthew Walker
PROTECTED]] Sent: Thursday, 19 December 2002 11:37 a.m. To: CF-Talk Subject: Re: refresh iframe I may be missing something, but tired this--as well as various combinations of src and href as suggested by others--and nothing does the refresh. This in the detail iframe: script

Re: refresh iframe

2002-12-18 Thread E. Keith Dodd
/script Thanks for all the help! Keith - Original Message - From: Matthew Walker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, December 18, 2002 5:56 PM Subject: RE: refresh iframe Oh since it's one iframe from another, you need to go via the parent page, i.e. one

Re: refresh from server not client cache on back button

2002-11-05 Thread Chris Norloff
You can use cfheader, and write an HTTP header. cache-control is part of HTTP 1.1 I think this will keep all caches from storing the file (public/proxy caches, and private/browser caches): cfheader name=cache-control value=no-cache,no-store Check your favorite HTTP reference for other possible

RE: refresh and back buttom

2002-08-22 Thread Everett, Al
:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 4:35 PM To: CF-Talk Subject: RE: refresh and back buttom I understand that... just wondering if there was an easier way... like a script or something. How do they online banking sites do it? If you hit refresh or back, it says page

RE: refresh and back buttom

2002-08-22 Thread Shawn Regan
this make sense? Shawn Regan pacifictechnologysolutions 15530-B Rockfield Blvd. Suite 4 Irvine, CA 92618 949.830.1623 w w w . p t s 1 . c o m -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 22, 2002 5:37 AM To: CF-Talk Subject: RE: refresh and back

RE: refresh and back buttom

2002-08-22 Thread Robertson-Ravo, Neil (REC)
from irt.org http://developer.irt.org/script/311.htm -Original Message- From: Shawn Regan [mailto:[EMAIL PROTECTED]] Sent: 22 August 2002 15:53 To: CF-Talk Subject: RE: refresh and back buttom You cannot keep them from using the Refresh button. But you can do this for the back button

RE: refresh and back buttom

2002-08-20 Thread Tony Weeg
1. redirect them to a page that has nothing to do with the action they have just completed. ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED]]

RE: refresh and back buttom

2002-08-20 Thread Tony Weeg
, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 4:26 PM To: CF-Talk Subject: RE: refresh and back buttom 1. redirect them to a page that has nothing to do with the action they have

RE: refresh and back buttom

2002-08-20 Thread Tim Do
PM To: CF-Talk Subject: RE: refresh and back buttom maybe even drop a cookie on that page you redirected them to, such that if they click on anything else, it would set the cookie, then if they tried to get back to that page, it wouldn't cause they already had that cookie. .tony Tony Weeg

RE: refresh and back buttom

2002-08-20 Thread Matthew Friedman
You could use the meta tag expires and expire the page immediatly from the browes cache. Remeber to use GMT for the time var. matt -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 4:35 PM To: CF-Talk Subject: RE: refresh and back buttom I

RE: refresh and back buttom

2002-08-20 Thread Les Mizzell
How about just doing: scripthistory.forward()/script This issue was discussed at length just a week or so ago as well. Check the archives... __ Your ad could be here. Monies from ads go to support these lists and provide

Re: refresh and back buttom

2002-08-20 Thread Paul Giesenhagen
Relocate them after the information has been submitted .. Page Form stuff -- Page Insert stuff --Locate to page thank you --- Thank You - Original Message - From: Tim Do [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, August 20, 2002 3:34 PM Subject: RE: refresh

RE: refresh and back buttom

2002-08-20 Thread Tim Do
that works well for the back buttom.. is there a script to prevent the reload? -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 1:34 PM To: CF-Talk Subject: RE: refresh and back buttom How about just doing: scripthistory.forward()/script

Re: Refresh Page

2002-07-14 Thread S . Isaac Dealey
Hi, I was wondering if anyone knew of a way to have a cfm page refresh after a certain timeout, say 30-45 minutes? There are two common ways to do this. One is with a meta refresh tag and the other is with a javascript window.setTimeout() function call... I'm in a bit

RE: Refresh Page

2002-07-14 Thread Jim Vosika
, 2002 3:17 PM To: CF-Talk Subject: Re: Refresh Page Hi, I was wondering if anyone knew of a way to have a cfm page refresh after a certain timeout, say 30-45 minutes? There are two common ways to do this. One is with a meta refresh tag and the other is with a javascript

RE: Refresh clicking

2002-07-01 Thread Matthew Friedman
would the meta tag work to refresh the page? -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Monday, July 01, 2002 2:13 PM To: CF-Talk Subject: Refresh clicking Anyone know of a way to stop my page form clicking everytime I refresh I have an app that needsa to

Re: Refresh clicking

2002-07-01 Thread Bill Wheatley
use CFLOCATION to push your client to a page that when he refreshes he CANT repost your data Bill Wheatley Senior Database Developer Macromedia Certified Advanced Coldfusion Developer EDIETS.COM 954.360.9022 X159 ICQ 417645 - Original Message - From: Kris Pilles [EMAIL PROTECTED] To:

Re: Refresh clicking

2002-07-01 Thread Paris Lundis
that's funny... :) no clicking... tell them to turn the volume down... I think there might be a browser feature/setting to do this depending on browser... but then they might/will miss all their sounds... -paris Paris Lundis Founder Areaindex, L.L.C. http://www.areaindex.com

Re: Refresh clicking

2002-07-01 Thread todd
Er... then, the client needs go to the control panel, click on sounds and tell Windows No Sound or turn down the volume. I don't think there's any way for your code to tell IE to not play the 'clicking' sound. :) ~Todd On Mon, 1 Jul 2002, Kris Pilles wrote: Anyone know of a way to stop my

RE: Refresh clicking

2002-07-01 Thread Rob Sherman
Control Panel / Sounds Multimedia Set Exclamation, Critical Stop and Asterisk to nothing, or simply delete the chord.wav file if you want to get radical. Sincerely, Rob Sherman President Velocity Interactive, Inc. - Technology Solutions for Business http://www.velocityinteractive.com Office

Re: Refresh clicking

2002-07-01 Thread William H. Bowen
Remove start.wav (or set to [none]) here: Control Panels/Sounds/Windows Explorer/Start Navigation WinNT 4sp6a YMMV Maybe there's a way you can affect this from the page, but I hope not :-) HTH will William H. Bowen Webmaster ALSTOM Energy Automation Information Your friendly

Re: Refresh clicking

2002-07-01 Thread S . Isaac Dealey
The only way I know of to eliminate it accross all users ( without having to have them turn off their OS defined sounds, etc. ) is to use either a Flash module for the page that needs to refresh ( and collect new data from the page using the new Flash MX loadvars object ) , or to dynamically

Re: Refresh clicking

2002-07-01 Thread Jon Hall
If you are refreshing the source of a page or a frame src, it's going to click. No programmatic way around it. Either use Flash, Java, Activex, or use one of the javascript server communication methods to get your data. This chat program uses setInterval to change a script src every 2.5

Re: refresh parent after query update

2002-06-29 Thread Marius Milosav
After the update is completed you can run the following code: script language=JavaScript opener.location.reload(true); close (); /script This will also close the child window. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application

Re: refresh parent after query update

2002-06-29 Thread Douglas Brown
ThanksPerfect. Dont know why I did not think of that Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: Marius Milosav [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, June 29, 2002 3:12 PM Subject: Re: refresh parent after query update After

Re: Refresh

2002-05-15 Thread phumes1
Hi, I'm having trouble figuring this one out. I'm using cfdirectory to list file(s) on our server. Each file has an associated a href anchor. When a link is clicked on and depending on the file extension different templates are opened up. For example, one link will open a dialog that allows a

RE: Refresh

2002-05-15 Thread David Armstrong
- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 12:51 PM To: CF-Talk Subject: Re: Refresh Hi, I'm having trouble figuring this one out. I'm using cfdirectory to list file(s) on our server. Each file has an associated a href anchor. When a link is clicked on and depending

RE: Refresh

2002-05-15 Thread Philip Arnold - ASP
I'm having trouble figuring this one out. I'm using cfdirectory to list file(s) on our server. Each file has an associated a href anchor. When a link is clicked on and depending on the file extension different templates are opened up. For example, one link will open a dialog that allows a

RE: Refresh

2002-05-15 Thread David Armstrong
doh! window.opener.loocation.reload(); -Original Message- From: David Armstrong Sent: Wednesday, May 15, 2002 1:03 PM To: CF-Talk Subject: RE: Refresh refresh the primary window then close the secondary, like this: script //refresh primary window

Re: Refresh Window

2002-02-20 Thread Clint Tredway
I use this alot: opener.location = opener.location; -- Original Message -- from: Jones, Becky [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Wed, 20 Feb 2002 11:58:24 -0500 Is there a way to Automatically refresh a window? I have a page that has a

Re: Refresh Window

2002-02-20 Thread kelly
Try this: script !-- Hide script from old browsers function closewindow(newUrl) { window.opener.document.location = newUrl window.close(); } // End hiding script from old browsers-- /script a href=someurl.htm target=content onClick=javascript:closewindow('someurl.htm')Image/A -

Re: Refresh Window

2002-02-20 Thread Critz
oi Becky!! window.opener.location.reload(true) -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion - Wednesday, February 20, 2002, 11:58:24 AM, you wrote: JB Is there a way to Automatically refresh a

RE: Refresh Window

2002-02-20 Thread Christian Abad
Becky: Try this- Assuming that the window underneath (parent) created the pop-up (child) window, you can add this line of code to your input type=submit ... button: onClick=JavaScript: opener.location.reload(); Works like a gem! Cheers, Christian N. Abad ColdFusion Web Developer

Re: Refresh window

2002-02-08 Thread Clint Tredway
onchange=document.form.submit(); I think thisonly works in IE though (I could be wrong) -- Original Message -- from: Douglas Brown [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Fri, 8 Feb 2002 11:55:10 -0800 How do you do an onchange with a select

Re: Refresh window

2002-02-08 Thread Bryan Stevenson
select name=MySelect onchange=submit(); Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

RE: Refresh window

2002-02-08 Thread Steve Oliver
I assume you want it for a category change or something like that? select name=blah onchange=document.location.href='whatever.cfm?cat=' + this.value __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Douglas Brown

RE: Refresh with form variables?

2001-08-07 Thread Shawn Grover
Yes, use CFHTTP and CFHTTPPARAM - set the param type to FORM, and name the form element. For this to work though, you have to know what they called their form elements. Viewing the source should be able to give you that. Shawn Grover -Original Message- From: Josh R [mailto:[EMAIL

RE: Refresh Banner Rotator

2001-07-13 Thread Nick Betts
Your IP does not allow Custom Tags? Why not just put the tag in the same folder as calling template? It does not HAVE to go in Custom Tags folder on server (although it is preferable). -Original Message- From: Guy McDowell [mailto:[EMAIL PROTECTED]] Sent: 13 July 2001 13:35 To: CF-Talk

RE: Refresh again

2001-05-04 Thread Semrau, Steven L Mr SRA
Try this: meta http-equiv=Expires content=0 !--- setup our expire times for NN and MSIE --- cfoutput !--- MSIE (Fri, 30 Oct 1998 14:19:41 GMT) --- cfset MSIEtimestamp='#dateformat(now(),DDD)#,#dateformat(now(),DD)# #dateformat(now(),Mmm)# #timeformat(now(),HH:MM:SS)#'

Re: Refresh page always?

2001-04-30 Thread Varando Family
This this tag: META HTTP-EQUIV=expires CONTENT=Wed, 26 Feb 1997 08:21:57 GMT Pablo :) http://www.cfm-resources.com - Original Message - From: JAIME HOI [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 30, 2001 2:27 AM Subject: Refresh page always? how can we

RE: Refresh page always?

2001-04-30 Thread JAIME HOI
- From: Varando Family [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 2:31 PM To: CF-Talk Subject: Re: Refresh page always? This this tag: META HTTP-EQUIV=expires CONTENT=Wed, 26 Feb 1997 08:21:57 GMT Pablo :) http://www.cfm-resources.com - Original Message - From: JAIME HOI

Re: Refresh page always?

2001-04-30 Thread Billy Cravens
[mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 2:31 PM To: CF-Talk Subject: Re: Refresh page always? This this tag: META HTTP-EQUIV=expires CONTENT=Wed, 26 Feb 1997 08:21:57 GMT Pablo :) http://www.cfm-resources.com - Original Message - From: JAIME HOI [EMAIL PROTECTED

Re: refresh page

2001-04-26 Thread William J Wheatley
Ok having a little trouble figuring out what you are meaning is not refreshing but heres my best guess =) IF the content is not refreshing on the web browser maybe you want to try your browser cache and set your browser to reload page on each visit that could help fix your problem -) Bill

RE: refresh page

2001-04-26 Thread Semrau, Steven L Mr SRA
Here is some code that we use at the top of the pages we don't want to have cached (refreshed every time) hope it helps. meta http-equiv=Expires content=0 !--- setup our expire times for NN and MSIE --- cfoutput !--- MSIE (Fri, 30 Oct 1998 14:19:41 GMT) --- cfset

Re: Refresh, on save

2001-03-04 Thread Phoeun Pha
my friend, NEVER EVER use coldfusion's browser. use an external browser - Original Message - From: Michael [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, March 04, 2001 12:32 PM Subject: Refresh, on save I am trying to figure out what I am missing in the setup, when

Re: Refresh, on save

2001-03-04 Thread Michael
How does that answer my question? Ooops it doesn't. While your point maybe valid, it does not answer my question. "Phoeun Pha" [EMAIL PROTECTED] wrote in message 001501c04e52$2a27a560$0100a8c0@m4x0w0">news:001501c04e52$2a27a560$0100a8c0@m4x0w0... my friend, NEVER EVER use coldfusion's

RE: Refresh, on save

2001-03-04 Thread Philip Arnold - ASP
I am trying to figure out what I am missing in the setup, when working in studio, then save, and goto browse, I have to hit refresh, in order to see my changes, although on my system at work, once I hit browse, it show's the changes, automagically. Are your browser settings the same? Check

  1   2   >