RE: insertion problem view

2006-09-13 Thread Srinivas_Biragoni
Just add forward.setRedirect(true) before u return the forward. "David Friedman" <[EMAIL PROTECTED]

Re: Regarding Struts validator Framework

2006-08-29 Thread Srinivas_Biragoni
In the jsp code u givenonsubmit="return validateCustomerForm(this); but in validator-user.xml the form name is custForm, so replace that with onsubmit="return validateCustForm(this); Thanks, Srinivas. L

Re: Re[2]: How to convert absolute URL to context-relative URL?

2006-08-15 Thread Srinivas_Biragoni
Try using this... ActionForward forward = mapping.findForward("test"); StringBuffer path = new StringBuffer(forward.getPath()); path.append("/appname.do?param1=1¶m2=2"); return new ActionForward(path.toString()); Thanks, Srinivas.

RE: JavaScript validation errors

2006-08-14 Thread Srinivas_Biragoni
Try to put instead of ...just a trial.. Thanks, Srinivas. "O'Shea, Sean" To

Re: No getter method for property

2006-08-14 Thread Srinivas_Biragoni
I think you are missing Thanks, Srinivas. "Daoud Abdelmonem Faleh"

RE: JavaScript validation errors

2006-08-14 Thread Srinivas_Biragoni
Hi sean, i think if you put onsubmit="return validateLoginForm(this); it works fine with client(front-end validation)side and if you remove onsubmit from jsp then it works fine with server(backend validation)may be this helps you Thanks, Srinivas.

Re: problem of the "&" character in validation xml

2006-08-11 Thread Srinivas_Biragoni
Use & instead of & in validation.xml file. Romu <[EMAIL PROTECTED] >

Re: Plz Help, Urgent

2006-08-10 Thread Srinivas_Biragoni
In Netbeans also ..right click on the parent folder(which have jsp, java and xml files) in projects menu(left pane) then click find . Thanks, Srinivas. kalpesh modi

Re: About Display Tag

2006-07-24 Thread Srinivas_Biragoni
Check this.http://displaytag.homeip.net/displaytag-examples-1.1 /example-paging.jsp Thanks, Srinivas.B "senthil.s" <[EMAIL PROTECTED]

Reload Problem with IE

2006-07-06 Thread Srinivas_Biragoni
Hi All, I am using struts 1.2.8 , the problem is after adding a record in my web page(Internet Explorer), when i right click and refresh the page it's giving duplicate record exception , i am using in my JSP , if i put GET in place of POST i am not getting the problem. But i want to us

Re: Problem with MessageResources.properties

2006-06-21 Thread Srinivas_Biragoni
Thanks for the respone..:) i got the solution , that is the Fix for Bugzilla #2233..single quote escape charcter is \' with formatKey. Monkeyden

Problem with MessageResources.properties

2006-06-20 Thread Srinivas_Biragoni
Hi All, I am using struts 1.2.8 , In my MessageResources.properties file i am using message key Found {0} records for NewYear's eve (just an example), this throwing wrong format string exception, when i removed single quote it's working fine and if there are no argument {0} then also its