i18n in struts action classes

2006-07-19 Thread Mukta
, Mukta.

RE: Urgent help required

2006-07-10 Thread Mukta
If you don't have any customer (if u r developing a project for ur own practice), try consulting some mathematical LPP problems statements. We used to have a lot of similar problems to be solved in our LPP assignments :) -Original Message- From: Bart Busschots [mailto:[EMAIL PROTECTED] S

RE: Quick question about the Resources.properties files.

2006-06-30 Thread Mukta
You can say admin.admin.notAuthorized={error.notAuthorized} -Original Message- From: Fredrik Andersson [mailto:[EMAIL PROTECTED] Sent: Friday, June 30, 2006 1:39 PM To: Struts Users Mailing List Subject: Quick question about the Resources.properties files. Hi all just a quick question:

Re: JSP files cached in NetBeans ???

2006-06-28 Thread Mukta
Your "work" container caches the jsps. Whenever you change a jsp, go to "work" folder and remove your project folder from there. Then run your project. Your problem will get solved. = From: "A. Lotfi" <[EMAIL PROTECTED]> Date: Wed Jun 28 23:34:03 CDT 2006 To: Struts Users Ma

RE: Javascript problem, how to control special characters from being entered into textbox

2006-06-27 Thread Mukta
If you want to allow only characters and digits, you need not know keycodes of all the special characters. Just compare the characters' and digits' ASCII values with the character entered on OnKeyUp event. If it's a special character, just drop it. You can also use java.util.regex.Pattern and java

RE: Setting Language through the browser?

2006-06-27 Thread Mukta
I think you will need to develop a browser plug-in for this. -Original Message- From: Fredrik Andersson [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 4:13 PM To: Struts Users Mailing List Subject: Setting Language through the browser? Hi all I have manage to get the i18n inter

RE: Problem with one of the actions.

2006-06-26 Thread Mukta
Just make sure your struts-config has proper definition for "/audit.do" -Original Message- From: sim085 [mailto:[EMAIL PROTECTED] Sent: Monday, June 26, 2006 8:15 PM To: user@struts.apache.org Subject: Problem with one of the actions. Hello, I have the following exception being thrown

RE: [again] how to disable browser's back button after logout ?

2006-06-25 Thread Mukta
If you can use javascript, just add following code to all your pages. Whenever anyone will click browser back on any page, that page itself will get reloaded rather than going back to the previous page.