setProperty in Nescape II

2000-08-02 Thread Herbert Pfleger
Thanks Sergey for your help. I'm opening a little popup window ( window open(...) ) with a textfield, the user can file with some input. then he clicks the "Submit Request"-button. This button should send the input to the javabean and close the popup widow, so the user can go on in the parent wind

Re: Parameters passing from Applet to JSP

2000-08-01 Thread Herbert Pfleger
I have found some example-code(only for netscape), it should work, but it doesn't work in my environment. may be you have more luck. mport java.awt.Graphics; public class HelloWorld extends Applet { String myString; public void init() { myString = new String("Thats my hello-text"

setProperty in Netscape

2000-08-01 Thread Herbert Pfleger
Hi all, my problem: I have written some JSP-Code and it is working fine in MSIE 5.0, but it is not working with Netscape 4.7. Especially i have big problems to use setProperty to set a value into a bean. Can anybody tell me if this is a problem in Nescape, or if it is a problem in my Code? Thanks

Re: How to refresh a JSP-Page

2000-07-28 Thread Herbert Pfleger
Thanks to all who gave me tips.The Error, why my page did'nt refresh, was that the scope of the Bean was only page. Changed to session it worked fine. Thanks a lot Herb === To unsubscribe: mailto [EMAIL PROTECTED] with body:

How to refresh a JSP-Page

2000-07-27 Thread Herbert Pfleger
Hi All, I have a jsp-page with: <%@ page session="true" import = "x.*" %> <%= Bean1.getA() %>. Here A in Bean1 has the value 1. After that A in Bean1 changes to 2. So I am implementing a Refresh-Button with: function refresh(){ window.location.reload(); } When I press the refresh-

Re: refresh

2000-07-25 Thread Herbert Pfleger
Hi All, thanks for your help, but it still doesnt work. So I try to tell you my problem again. I have a jsp-page with: <%@ page session="true" import = "html.*" %> <%= Bean1.getA() %>. Her A in Bean1 has the value 1. After that A in Bean1 changes to 2. So I am implementing a Refresh-Butto

refresh

2000-07-24 Thread Herbert Pfleger
Hi all, how can I implement a Refresh-Button in a jsp-page. When I only reload the page, i got no new values, cause the jsp-page is already transformed to a servlet and the servlet is already compiled and does not refresh. So how can I make a total refresh (with new java-file and new compilation).

Java-Instance in Custom Tag

2000-07-19 Thread Herbert Pfleger
Hi All, I am trying to give the instance of a javaobject as an attribute to a self written Custom Tag. I put it in my Jsp with then run the Custom Tag with If in my Tag-Javaclass rs is a String, then i got no Error, but if rs is a javaclass i got javax.servlet.ServletException: argument type mis

Validation-Applet

2000-07-13 Thread Herbert Pfleger
Hi All, I wanna validate some user input in my JSP-page. For that I try to include an Applet in my JSP-page(http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.js

call Custom Tag on an event

2000-07-12 Thread Herbert Pfleger
Hi, how can I call a selfmade Custom Tag on an Event ( for example onClick) ? onClick = "" or onClick = "callTag()" with function callTag(){ document.write(""); } are not working. Can anybody give me a hint? Thanks Herb.

Taglib-Design

2000-07-03 Thread Herbert Pfleger
Hi All, could anybody please give me some Hints. How do I know which Custom Tags I should design for my JSP-Application. Are there any rules or any help, how to decide what I'm doing by a Custom Tag and what by a few lines of JavaCode in the JSP-File? Thanks and Regards Herb ==

JSP, native methods and TomCat, Error 500

2000-06-26 Thread Herbert Pfleger
I am trying to invoke a native method from within a java class. The Dll is in the winnt/system32 dir. This works if the class ist run from the commandline. As soon as if i run the same class from within a JSP file, it doesn't work! Sample: Untitled <%= obj.invoke("teststring") %>