Hello to all,
i hope someone can help me.
I am using Java 1.6 and Tomcat 6.
I have a jsp file where i call a method like this:
CODE --> java
<tr><td align="center" valign="top" colspan="2">
<br>
<table border="0" cellpadding="20" cellspacing="0" ><tr><td valign="top">
<table border="0" cellpadding="0" cellspacing="0" > <tr align="center"><td>
<%
class.method(parameter)
%>
</td>
</tr>
</table>
</td></tr></table>
</td></tr>
The methode is like this:
CODE --> java
public String blabla (...)
Stringbuffer output = new StringBuffer();
...
output.append("bla bla");
... this methode returns a "Systemmessage" window with text "bla bla".
Now i would like to replase this "Systemmessage" whith a "bla bla" text in a popup window with a OK Button...
Can someone give me an advice? is this something i had to change it on the jsp file, or should i make changes in the method?
Thanks
Theo
i hope someone can help me.
I am using Java 1.6 and Tomcat 6.
I have a jsp file where i call a method like this:
CODE --> java
<tr><td align="center" valign="top" colspan="2">
<br>
<table border="0" cellpadding="20" cellspacing="0" ><tr><td valign="top">
<table border="0" cellpadding="0" cellspacing="0" > <tr align="center"><td>
<%
class.method(parameter)
%>
</td>
</tr>
</table>
</td></tr></table>
</td></tr>
The methode is like this:
CODE --> java
public String blabla (...)
Stringbuffer output = new StringBuffer();
...
output.append("bla bla");
... this methode returns a "Systemmessage" window with text "bla bla".
Now i would like to replase this "Systemmessage" whith a "bla bla" text in a popup window with a OK Button...
Can someone give me an advice? is this something i had to change it on the jsp file, or should i make changes in the method?
Thanks
Theo