Re: How do you convert a jsp page into Java?

2002-09-17 Thread David Hyne
Check your /WEB-INF/work/ directory. For every JSP page, the server generate (servlet) codes i.e. if test.jsp, the java file will be _test_jsp.java. Hope this help! -Original Message- From: Anand Desai [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 1:59 PM To: [EMAIL

Re: disable back button

2002-05-03 Thread David Hyne
Meta tag with cache expires in history, with no-cache. head title/title meta http-equiv=expires content=Sat, 1 Jan 2000 12:00:00 GMT meta http-equiv=Cache-Control content=no-cache, must-revalidate meta http-equiv=Pragma content=no-cache /head -Original

Re: Simple Question

2002-04-16 Thread David Hyne
String myVar = VarName; -Original Message- From: Papo Napolitano [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 1:40 PM To: [EMAIL PROTECTED] Subject: Simple Question Hi! How can I do to to put inside a JSP String Variable this information %=VarName% I'd tried with this but

[no subject]

2002-03-29 Thread David Hyne
You could start off reading JavaMail http://java.sun.com/products/javamail/. The demo codes offer useful Servlet container-level and client AWT examples. Good Luck! David -Original Message- From: Thuan N. Nguyen [mailto:[EMAIL PROTECTED]] Sent: Friday, March 29, 2002 9:05 AM To:

Re: Carriage return for Oracle

2002-03-20 Thread David Hyne
Insert into your column of table like this: 'text first line' || chr(13) || 'text next line' Reading whether text has carriage return: instr( column_name,chr(13))0; Disclaimer: in Oracle - not sure about the rest. David -Original Message- From: [Alan Leung] [mailto:[EMAIL PROTECTED]]

HTTP Post Maximum Length

2002-03-20 Thread David Hyne
Hi All, I need to do BLOB via http POST. By theory, there is no maximum limit to POST method (up to client machine) compared to 2048 bytes in GET. Could someone confirm that? Thanks! David === To unsubscribe: mailto

Form submit

2002-03-19 Thread David Hyne
Hi All, This is a question in JavaScript. Could you tell me how to change the FORM ACTION based on the input type? say form name=menu action=index.jsp method=get select name=dish option value=mexicanMexican Dish/option option value=ItalianItalian Dish/option select input

Re: Leaving the JSP page

2002-02-28 Thread David Hyne
You could control this behavior in client-side scripting, ie JavaScript. Or you could write taglib to control the fields. -Original Message- From: sanjib B [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 11:01 AM To: [EMAIL PROTECTED] Subject: Leaving the JSP page Hi All,

IDE for Database Mappings

2002-01-28 Thread David Hyne
Title: IDE for Database Mappings Hi All, Could someone give me pointers in the IDE for mapping database fields and we could directly do INSERT, UPDATE, DELETE on the automatic-generated JSP pages? Currently we have knowledge of http://www.alachisoft.com. Thanks you very much! David