RE: [KCFusion] ColdFusion and JSP pages

2003-02-19 Thread Hale, Frederick L, NSPM
ailto:[EMAIL PROTECTED]]Sent: Wednesday, February 19, 2003 11:37 AMTo: '[EMAIL PROTECTED]'Subject: RE: [KCFusion] ColdFusion and JSP pages I have a form where I am using cfform. I would like to also include my own _javascript_ to use for validation, but it is not working. What am I

RE: [KCFusion] ColdFusion and JSP pages

2003-02-19 Thread Ramsey Abu-Absi
Hi Chris, I think the problem is that cfform is an all or nothing deal. You can use your own form validation, or you can use cfform/cfinput, but not a combination of the two. The reason is that cfform generates a _javascript_ function that uses the onsubmit event. So if you specify an onsubmit

RE: [KCFusion] ColdFusion and JSP pages

2003-02-19 Thread Chris Holdman
Title: Message You are correctI found out that you cannot use onsubmit, but instead you use "onvalidate" in the cfinput tag. So it looks as such script language="_javascript_"!--function subform(o) blah blah blah //--/script cfform action="" method="post"cfinput type=text size="40"

Re: [KCFusion] ColdFusion and JSP pages

2003-02-19 Thread Bryan LaPlante
PROTECTED] Sent: Wednesday, February 19, 2003 12:35 PM Subject: RE: [KCFusion] ColdFusion and JSP pages Hi Chris,I think the problem is that cfform is an all or nothing deal. You can use your own form validation, or you can use cfform/cfinput, but not a combination of the two

[KCFusion] ColdFusion and JSP pages

2002-12-04 Thread Chris Holdman
I have a situation where I am need to include a cfm page into a jsp pageI have tried the %@ include file="file.cfm"% but this does not work becuase the jsp page tries to translate the Cold Fusion code into java code. Is there a way to pass the results of a cfm page into a jsp page

RE: [KCFusion] ColdFusion and JSP pages

2002-12-04 Thread Dunwiddie, Bruce
]'Subject: [KCFusion] ColdFusion and JSP pages I have a situation where I am need to include a cfm page into a jsp pageI have tried the %@ include file="file.cfm"% but this does not work becuase the jsp page tries to translate the Cold Fusion code into java code. Is ther