RE: Strange Button Behavior

2003-01-23 Thread Paris Lundis
Yeah if you would share that would be cool...

Bloggers are really just a content management software... Very correct 
to say that... CMS indeed...

MySQL conversion would be too nice of you... I can deal with Access 
(yes I use it still for some projects)... 

Feel free to zip it all up and send it to this email account... Bed 
beckons... 7am comes too soon!

-paris


Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
412-292-3135
[finding the future in the past, passing the future in the present]
[connecting people, places and things]


-Original Message-
From: Russ [EMAIL PROTECTED]
Date: Thu, 23 Jan 2003 01:18:14 -0600
Subject: RE: Strange Button Behavior

 I think you'd be surprised--there are TONS of pieces of blogger code
 out
 there--just not much in CF at all.  A couple.
 
 I sent someone else a very, very basic outline of a blog that I built
 in
 CFMX  Access in just about an hour and I'm happy to zip it up and
 send
 it along the way.  I can convert the db to mySQL if you need that,
 too.
 
 This is basic CMS, in my opinion.  On the asp site, we actually have
 built in the whole flow for posting, etc.  Writers post, I get an
 email/page and then I take it live upon editing.
 
 I digress.  Anyone know what's up with my buttons?  Heh...
 
  -Original Message-
  From: Paris Lundis [mailto:[EMAIL PROTECTED]] 
  Sent: Thursday, January 23, 2003 12:41 AM
  To: CF-Talk
  Subject: RE: Strange Button Behavior
  
  
  Yea been considering rolling a blogger of my own...  Amazingly, I 
  haven't really found anyone's code floating around... One of the
 few 
  apps there aren't an over abundance of... 
  
  Your older ASP site has a lot of functionality...clicked through it
  earlier... good stuff as well..
  
  
  Paris Lundis
  Founder
  Areaindex, L.L.C.
  http://www.areaindex.com
  http://www.pubcrawler.com
  412-292-3135
  [finding the future in the past, passing the future in the present]
  [connecting people, places and things]
  
  
  -Original Message-
  From: Russ [EMAIL PROTECTED]
  Date: Thu, 23 Jan 2003 00:21:40 -0600
  Subject: RE: Strange Button Behavior
  
   Thanks!
   
   Actually, it's modeled loosely after a blog that we built 
  in .asp and
   Access 2 years ago today (www.unrealisticexpectations.com) 
  that has a
   lot more functionality and took A LOT longer to build.
   
   The site that you saw has been designed and brought to
 functionality
   and
   release in a week's time.
   
   I really appreciate the compliment!
   
   Russ
   
-Original Message-
From: Paris Lundis [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 22, 2003 11:56 PM
To: CF-Talk
Subject: RE: Strange Button Behavior


That blogger looks great :) someone brewing their own in CF ?
Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
412-292-3135
[finding the future in the past, passing the future in 
  the present]
[connecting people, places and things]


-Original Message-
From: Russ [EMAIL PROTECTED]
Date: Wed, 22 Jan 2003 23:30:05 -0600
Subject: RE: Strange Button Behavior

 I certainly can--how about a url instead?
 
 Test site:  http://12.251.119.254/ricsoens/blog.cfm?blogID=8
 
  -Original Message-
  From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] 
  Sent: Wednesday, January 22, 2003 10:57 PM
  To: CF-Talk
  Subject: RE: Strange Button Behavior
  
  
  Russ:
  
  Can you post your code?
  
  --
  Mosh Teitelbaum
  evoch, LLC
  Tel: (301) 625-9191
  Fax: (301) 933-3651
  Email: [EMAIL PROTECTED]
  WWW: http://www.evoch.com/
  
  
   -Original Message-
   From: Russ [mailto:[EMAIL PROTECTED]]
   Sent: Wednesday, January 22, 2003 11:20 PM
   To: CF-Talk
   Subject: Strange Button Behavior
  
  
   Hello,
  
   I've got a form that I give the option to PREVIEW a users
  information in
   a popup window or they can simply submit their
 information
 without a
   preview.
  
   Submitting without preview offers no problems.
  
   Previewing offers no problems.
  
   However, when I submit AFTER a preview, there is no
 submit. 
   Instead,
   it's another preview, but in a new popup window; not 
  preview sized, etc.
  
   Can anyone assist me in the correction of this or the 
  location of what
   the problem is?
  
   Thanks,
  
   Russ
  
   
  
 

   
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all

RE: Strange Button Behavior

2003-01-23 Thread Mosh Teitelbaum
Russ:

The problem, as you may have guessed, is in your JavaScript code.  Within
the MM_Preview() function, you're resetting the form's action and target to
the preview settings.  But you never set them back to their originals.  Try
adding the following lines to the top of your validatePosts() function:

document.Comment.action = commentSubmit.cfm?blogID=8;
document.Comment.target = _self;

Not related, but you probably don't need the ?blogID=8 in the action of
the URL.  You've included that as a hidden form field so you're duplicating
the information.  Won't hurt to keep it in, but it's extraneous.

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 625-9191
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


 -Original Message-
 From: Russ [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, January 23, 2003 12:30 AM
 To: CF-Talk
 Subject: RE: Strange Button Behavior


 I certainly can--how about a url instead?

 Test site:  http://12.251.119.254/ricsoens/blog.cfm?blogID=8

  -Original Message-
  From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, January 22, 2003 10:57 PM
  To: CF-Talk
  Subject: RE: Strange Button Behavior
 
 
  Russ:
 
  Can you post your code?
 
  --
  Mosh Teitelbaum
  evoch, LLC
  Tel: (301) 625-9191
  Fax: (301) 933-3651
  Email: [EMAIL PROTECTED]
  WWW: http://www.evoch.com/
 
 
   -Original Message-
   From: Russ [mailto:[EMAIL PROTECTED]]
   Sent: Wednesday, January 22, 2003 11:20 PM
   To: CF-Talk
   Subject: Strange Button Behavior
  
  
   Hello,
  
   I've got a form that I give the option to PREVIEW a users
  information in
   a popup window or they can simply submit their information without a
   preview.
  
   Submitting without preview offers no problems.
  
   Previewing offers no problems.
  
   However, when I submit AFTER a preview, there is no submit.
   Instead,
   it's another preview, but in a new popup window; not
  preview sized, etc.
  
   Can anyone assist me in the correction of this or the
  location of what
   the problem is?
  
   Thanks,
  
   Russ
  
  
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Strange Button Behavior

2003-01-23 Thread Russ
BINGO!

Thanks--I hadn't realized that.  Jscript is a weak suit for me, and
since you noticed the lack of needing the URL variable, it allowed me to
clean up a couple of other things.

Thanks very much!

Russ

 -Original Message-
 From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] 
 Sent: Thursday, January 23, 2003 9:23 AM
 To: CF-Talk
 Subject: RE: Strange Button Behavior
 
 
 Russ:
 
 The problem, as you may have guessed, is in your JavaScript 
 code.  Within
 the MM_Preview() function, you're resetting the form's action 
 and target to
 the preview settings.  But you never set them back to their 
 originals.  Try
 adding the following lines to the top of your validatePosts() 
 function:
 
   document.Comment.action = commentSubmit.cfm?blogID=8;
   document.Comment.target = _self;
 
 Not related, but you probably don't need the ?blogID=8 in 
 the action of
 the URL.  You've included that as a hidden form field so 
 you're duplicating
 the information.  Won't hurt to keep it in, but it's extraneous.
 
 --
 Mosh Teitelbaum
 evoch, LLC
 Tel: (301) 625-9191
 Fax: (301) 933-3651
 Email: [EMAIL PROTECTED]
 WWW: http://www.evoch.com/
 
 
  -Original Message-
  From: Russ [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, January 23, 2003 12:30 AM
  To: CF-Talk
  Subject: RE: Strange Button Behavior
 
 
  I certainly can--how about a url instead?
 
  Test site:  http://12.251.119.254/ricsoens/blog.cfm?blogID=8
 
   -Original Message-
   From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]]
   Sent: Wednesday, January 22, 2003 10:57 PM
   To: CF-Talk
   Subject: RE: Strange Button Behavior
  
  
   Russ:
  
   Can you post your code?
  
   --
   Mosh Teitelbaum
   evoch, LLC
   Tel: (301) 625-9191
   Fax: (301) 933-3651
   Email: [EMAIL PROTECTED]
   WWW: http://www.evoch.com/
  
  
-Original Message-
From: Russ [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 22, 2003 11:20 PM
To: CF-Talk
Subject: Strange Button Behavior
   
   
Hello,
   
I've got a form that I give the option to PREVIEW a users
   information in
a popup window or they can simply submit their 
 information without a
preview.
   
Submitting without preview offers no problems.
   
Previewing offers no problems.
   
However, when I submit AFTER a preview, there is no submit.
Instead,
it's another preview, but in a new popup window; not
   preview sized, etc.
   
Can anyone assist me in the correction of this or the
   location of what
the problem is?
   
Thanks,
   
Russ
   
   
  
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Strange Button Behavior

2003-01-22 Thread Mosh Teitelbaum
Russ:

Can you post your code?

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 625-9191
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


 -Original Message-
 From: Russ [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, January 22, 2003 11:20 PM
 To: CF-Talk
 Subject: Strange Button Behavior


 Hello,

 I've got a form that I give the option to PREVIEW a users information in
 a popup window or they can simply submit their information without a
 preview.

 Submitting without preview offers no problems.

 Previewing offers no problems.

 However, when I submit AFTER a preview, there is no submit.  Instead,
 it's another preview, but in a new popup window; not preview sized, etc.

 Can anyone assist me in the correction of this or the location of what
 the problem is?

 Thanks,

 Russ

 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Strange Button Behavior

2003-01-22 Thread Russ
I certainly can--how about a url instead?

Test site:  http://12.251.119.254/ricsoens/blog.cfm?blogID=8

 -Original Message-
 From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] 
 Sent: Wednesday, January 22, 2003 10:57 PM
 To: CF-Talk
 Subject: RE: Strange Button Behavior
 
 
 Russ:
 
 Can you post your code?
 
 --
 Mosh Teitelbaum
 evoch, LLC
 Tel: (301) 625-9191
 Fax: (301) 933-3651
 Email: [EMAIL PROTECTED]
 WWW: http://www.evoch.com/
 
 
  -Original Message-
  From: Russ [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, January 22, 2003 11:20 PM
  To: CF-Talk
  Subject: Strange Button Behavior
 
 
  Hello,
 
  I've got a form that I give the option to PREVIEW a users 
 information in
  a popup window or they can simply submit their information without a
  preview.
 
  Submitting without preview offers no problems.
 
  Previewing offers no problems.
 
  However, when I submit AFTER a preview, there is no submit. 
  Instead,
  it's another preview, but in a new popup window; not 
 preview sized, etc.
 
  Can anyone assist me in the correction of this or the 
 location of what
  the problem is?
 
  Thanks,
 
  Russ
 
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Strange Button Behavior

2003-01-22 Thread Paris Lundis
That blogger looks great :) someone brewing their own in CF ?
Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
412-292-3135
[finding the future in the past, passing the future in the present]
[connecting people, places and things]


-Original Message-
From: Russ [EMAIL PROTECTED]
Date: Wed, 22 Jan 2003 23:30:05 -0600
Subject: RE: Strange Button Behavior

 I certainly can--how about a url instead?
 
 Test site:  http://12.251.119.254/ricsoens/blog.cfm?blogID=8
 
  -Original Message-
  From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] 
  Sent: Wednesday, January 22, 2003 10:57 PM
  To: CF-Talk
  Subject: RE: Strange Button Behavior
  
  
  Russ:
  
  Can you post your code?
  
  --
  Mosh Teitelbaum
  evoch, LLC
  Tel: (301) 625-9191
  Fax: (301) 933-3651
  Email: [EMAIL PROTECTED]
  WWW: http://www.evoch.com/
  
  
   -Original Message-
   From: Russ [mailto:[EMAIL PROTECTED]]
   Sent: Wednesday, January 22, 2003 11:20 PM
   To: CF-Talk
   Subject: Strange Button Behavior
  
  
   Hello,
  
   I've got a form that I give the option to PREVIEW a users 
  information in
   a popup window or they can simply submit their information
 without a
   preview.
  
   Submitting without preview offers no problems.
  
   Previewing offers no problems.
  
   However, when I submit AFTER a preview, there is no submit. 
   Instead,
   it's another preview, but in a new popup window; not 
  preview sized, etc.
  
   Can anyone assist me in the correction of this or the 
  location of what
   the problem is?
  
   Thanks,
  
   Russ
  
   
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Strange Button Behavior

2003-01-22 Thread Russ
Thanks!

Actually, it's modeled loosely after a blog that we built in .asp and
Access 2 years ago today (www.unrealisticexpectations.com) that has a
lot more functionality and took A LOT longer to build.

The site that you saw has been designed and brought to functionality and
release in a week's time.

I really appreciate the compliment!

Russ

 -Original Message-
 From: Paris Lundis [mailto:[EMAIL PROTECTED]] 
 Sent: Wednesday, January 22, 2003 11:56 PM
 To: CF-Talk
 Subject: RE: Strange Button Behavior
 
 
 That blogger looks great :) someone brewing their own in CF ?
 Paris Lundis
 Founder
 Areaindex, L.L.C.
 http://www.areaindex.com
 http://www.pubcrawler.com
 412-292-3135
 [finding the future in the past, passing the future in the present]
 [connecting people, places and things]
 
 
 -Original Message-
 From: Russ [EMAIL PROTECTED]
 Date: Wed, 22 Jan 2003 23:30:05 -0600
 Subject: RE: Strange Button Behavior
 
  I certainly can--how about a url instead?
  
  Test site:  http://12.251.119.254/ricsoens/blog.cfm?blogID=8
  
   -Original Message-
   From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] 
   Sent: Wednesday, January 22, 2003 10:57 PM
   To: CF-Talk
   Subject: RE: Strange Button Behavior
   
   
   Russ:
   
   Can you post your code?
   
   --
   Mosh Teitelbaum
   evoch, LLC
   Tel: (301) 625-9191
   Fax: (301) 933-3651
   Email: [EMAIL PROTECTED]
   WWW: http://www.evoch.com/
   
   
-Original Message-
From: Russ [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 22, 2003 11:20 PM
To: CF-Talk
Subject: Strange Button Behavior
   
   
Hello,
   
I've got a form that I give the option to PREVIEW a users 
   information in
a popup window or they can simply submit their information
  without a
preview.
   
Submitting without preview offers no problems.
   
Previewing offers no problems.
   
However, when I submit AFTER a preview, there is no submit. 
Instead,
it's another preview, but in a new popup window; not 
   preview sized, etc.
   
Can anyone assist me in the correction of this or the 
   location of what
the problem is?
   
Thanks,
   
Russ
   

   
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Strange Button Behavior

2003-01-22 Thread Paris Lundis
Yea been considering rolling a blogger of my own...  Amazingly, I 
haven't really found anyone's code floating around... One of the few 
apps there aren't an over abundance of... 

Your older ASP site has a lot of functionality...clicked through it 
earlier... good stuff as well..


Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
412-292-3135
[finding the future in the past, passing the future in the present]
[connecting people, places and things]


-Original Message-
From: Russ [EMAIL PROTECTED]
Date: Thu, 23 Jan 2003 00:21:40 -0600
Subject: RE: Strange Button Behavior

 Thanks!
 
 Actually, it's modeled loosely after a blog that we built in .asp and
 Access 2 years ago today (www.unrealisticexpectations.com) that has a
 lot more functionality and took A LOT longer to build.
 
 The site that you saw has been designed and brought to functionality
 and
 release in a week's time.
 
 I really appreciate the compliment!
 
 Russ
 
  -Original Message-
  From: Paris Lundis [mailto:[EMAIL PROTECTED]] 
  Sent: Wednesday, January 22, 2003 11:56 PM
  To: CF-Talk
  Subject: RE: Strange Button Behavior
  
  
  That blogger looks great :) someone brewing their own in CF ?
  Paris Lundis
  Founder
  Areaindex, L.L.C.
  http://www.areaindex.com
  http://www.pubcrawler.com
  412-292-3135
  [finding the future in the past, passing the future in the present]
  [connecting people, places and things]
  
  
  -Original Message-
  From: Russ [EMAIL PROTECTED]
  Date: Wed, 22 Jan 2003 23:30:05 -0600
  Subject: RE: Strange Button Behavior
  
   I certainly can--how about a url instead?
   
   Test site:  http://12.251.119.254/ricsoens/blog.cfm?blogID=8
   
-Original Message-
From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 22, 2003 10:57 PM
To: CF-Talk
Subject: RE: Strange Button Behavior


Russ:

Can you post your code?

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 625-9191
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


 -Original Message-
 From: Russ [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, January 22, 2003 11:20 PM
 To: CF-Talk
 Subject: Strange Button Behavior


 Hello,

 I've got a form that I give the option to PREVIEW a users 
information in
 a popup window or they can simply submit their information
   without a
 preview.

 Submitting without preview offers no problems.

 Previewing offers no problems.

 However, when I submit AFTER a preview, there is no submit. 
 Instead,
 it's another preview, but in a new popup window; not 
preview sized, etc.

 Can anyone assist me in the correction of this or the 
location of what
 the problem is?

 Thanks,

 Russ

 

   
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Strange Button Behavior

2003-01-22 Thread Russ
I think you'd be surprised--there are TONS of pieces of blogger code out
there--just not much in CF at all.  A couple.

I sent someone else a very, very basic outline of a blog that I built in
CFMX  Access in just about an hour and I'm happy to zip it up and send
it along the way.  I can convert the db to mySQL if you need that, too.

This is basic CMS, in my opinion.  On the asp site, we actually have
built in the whole flow for posting, etc.  Writers post, I get an
email/page and then I take it live upon editing.

I digress.  Anyone know what's up with my buttons?  Heh...

 -Original Message-
 From: Paris Lundis [mailto:[EMAIL PROTECTED]] 
 Sent: Thursday, January 23, 2003 12:41 AM
 To: CF-Talk
 Subject: RE: Strange Button Behavior
 
 
 Yea been considering rolling a blogger of my own...  Amazingly, I 
 haven't really found anyone's code floating around... One of the few 
 apps there aren't an over abundance of... 
 
 Your older ASP site has a lot of functionality...clicked through it 
 earlier... good stuff as well..
 
 
 Paris Lundis
 Founder
 Areaindex, L.L.C.
 http://www.areaindex.com
 http://www.pubcrawler.com
 412-292-3135
 [finding the future in the past, passing the future in the present]
 [connecting people, places and things]
 
 
 -Original Message-
 From: Russ [EMAIL PROTECTED]
 Date: Thu, 23 Jan 2003 00:21:40 -0600
 Subject: RE: Strange Button Behavior
 
  Thanks!
  
  Actually, it's modeled loosely after a blog that we built 
 in .asp and
  Access 2 years ago today (www.unrealisticexpectations.com) 
 that has a
  lot more functionality and took A LOT longer to build.
  
  The site that you saw has been designed and brought to functionality
  and
  release in a week's time.
  
  I really appreciate the compliment!
  
  Russ
  
   -Original Message-
   From: Paris Lundis [mailto:[EMAIL PROTECTED]] 
   Sent: Wednesday, January 22, 2003 11:56 PM
   To: CF-Talk
   Subject: RE: Strange Button Behavior
   
   
   That blogger looks great :) someone brewing their own in CF ?
   Paris Lundis
   Founder
   Areaindex, L.L.C.
   http://www.areaindex.com
   http://www.pubcrawler.com
   412-292-3135
   [finding the future in the past, passing the future in 
 the present]
   [connecting people, places and things]
   
   
   -Original Message-
   From: Russ [EMAIL PROTECTED]
   Date: Wed, 22 Jan 2003 23:30:05 -0600
   Subject: RE: Strange Button Behavior
   
I certainly can--how about a url instead?

Test site:  http://12.251.119.254/ricsoens/blog.cfm?blogID=8

 -Original Message-
 From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] 
 Sent: Wednesday, January 22, 2003 10:57 PM
 To: CF-Talk
 Subject: RE: Strange Button Behavior
 
 
 Russ:
 
 Can you post your code?
 
 --
 Mosh Teitelbaum
 evoch, LLC
 Tel: (301) 625-9191
 Fax: (301) 933-3651
 Email: [EMAIL PROTECTED]
 WWW: http://www.evoch.com/
 
 
  -Original Message-
  From: Russ [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, January 22, 2003 11:20 PM
  To: CF-Talk
  Subject: Strange Button Behavior
 
 
  Hello,
 
  I've got a form that I give the option to PREVIEW a users 
 information in
  a popup window or they can simply submit their information
without a
  preview.
 
  Submitting without preview offers no problems.
 
  Previewing offers no problems.
 
  However, when I submit AFTER a preview, there is no submit. 
  Instead,
  it's another preview, but in a new popup window; not 
 preview sized, etc.
 
  Can anyone assist me in the correction of this or the 
 location of what
  the problem is?
 
  Thanks,
 
  Russ
 
  
 

   
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4