Re: DynaValidatorForm with java.util.Date

2007-03-13 Thread Gareth Evans
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail

Re: Getting the ip address in the Action

2007-01-30 Thread Gareth Evans
request.getRemoteAddr(); Gareth Struts2 Fan wrote: Hi community, How can I get the client's ip address on the action's execute method? Thanks... -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN

Re: Web Design Tools

2007-01-09 Thread Gareth Evans
? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44

Re: [FRIDAY] DBCP configuration

2007-01-05 Thread Gareth Evans
of Operations Double A Trailer Sales, Inc. [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre

Re: Ideal solution to pagination (long lists)?

2007-01-04 Thread Gareth Evans
many articles and browsed many forums but haven’t yet been able to find a ‘best practice’ or ideal approach. Andrew -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax

Re: How to make a SELECT list readonly? If set disabled, loses the value when submit.

2006-11-02 Thread Gareth Evans
is no longer recognized and my form validation says its required. How can I make the html:select disabled or readonly while keeping the values it has passing back to the action when form is submitted. Thanks. -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre Inward Way

Re: exception

2006-09-07 Thread Gareth Evans
( FormBeanConfig.java:212) at org.apache.struts.util.RequestUtils.createActionForm( RequestUtils.java :292) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans

Re: EL Select

2006-09-06 Thread Gareth Evans
}***${revisionSelected. createDate}' Any Recommendations will really be appreciated. Regards Neil Meyer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans Senior Developer MSoft

Re: Struts Layouts

2006-08-22 Thread Gareth Evans
: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED

Re: Ready-made function somewhere to escape HTML?

2006-08-18 Thread Gareth Evans
that, the ResponseUtils.filter() method is probably your best bet. L. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre

Re: CSS style to html:link

2006-08-18 Thread Gareth Evans
please help. Thanks , Kavita - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans Senior Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore

Re: Proper Struts Tags

2006-07-31 Thread Gareth Evans
the author of the mail and delete the same. -- Gareth Evans Software Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100

Re: dynamic casting in Action class

2006-07-26 Thread Gareth Evans
] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans Software Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web

Re: Fwd: [OT] How to specify classpath for an application

2006-06-28 Thread Gareth Evans
] -- Gareth Evans Software Developer MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk

Re: Disable submit button

2006-05-31 Thread Gareth Evans
Hi, I use the following script to do this, it requires the prototype javascript library: function disableOnClick ( className ) { var elements = document.getElementsByClassName( className ); for ( var index = 0; index elements.length; index ++ ) { Event.observe(

Re: Help:validation is not working with struts1.2

2006-05-31 Thread Gareth Evans
Hi, If your application tries to connect to the web for any reason on startup, either to jakarta.apache.org or struts.apache.org it is because the digester is unable to find a local copy of the dtd. This can happen for a number of reasons: 1) There is a typo in your doctype declaration 2)

Re: Blank page when trying to forward

2006-05-26 Thread Gareth Evans
Your forward does not exist, your using: domainAdminEdit and domainAdminEdit.page Gareth Shervin Asgari wrote: Hello. I am having a problem. All my forwarding works more or less correctly, but when I want to forward from one part of the system it only shows me a blank page. I am trying to

Re: Blank page when trying to forward

2006-05-26 Thread Gareth Evans
There is no exception because struts thinks that your handling the response yourself and aborting the normal action processing Look at your code: * @struts.action-forward name=domainAdminEdit path=.domainAdminEdit ... final String DOMAIN_ADMIN_EDIT_PAGE = domainAdminEdit.page; definition

Re: Struts app on bar code scanner

2006-05-24 Thread Gareth Evans
It looks like your getters is returning this.barcode and your setter is setting this.myValue I'm guessing this could be the problem. Gareth marcus biel (innoWake gmbh) wrote: Hi, I got a little struts app that works fine on my or any other pc - But it's supposed to be running on a little

Re: AW: Missing message key

2006-05-24 Thread Gareth Evans
You can set up the location of your MessageResources from within your struts-config.xml. The message resources are loaded by the class loader so you'll either have to put it in your WEB-INF/classes or WEB-INF/lib folder Extract from struts-config message-resources

Re: AW: AW: Missing message key

2006-05-24 Thread Gareth Evans
Hi, What's the difference? resources.MessageResources would look for the file named /WEB-INF/classes/resources/MessageResources.properties MessageResources would look for the file named /WEB-INF/classes/MessageResources.properties Is there maybe a configuration file to tell the loader

Re: Getting a list of fields in a form

2006-05-24 Thread Gareth Evans
Map map = new HashMap(); BeanUtils.copyProperties( map , actionForm ); Emmanouil Batsis wrote: pantichd wrote: Can someone tell me if there is an easy way to get all the property keys along with their values from those two classes? Maybe there is a better way but using BeanUtils to

Re: How to disallow opening a page directly from URL

2006-05-18 Thread Gareth Evans
or you can override the processRoles or processPreprocess method in your request processor and send a redirect from there. Gareth Mark Shifman wrote: You can also define a filter that directs all actions to Logon.do when 1) the logon bean is not present in the session. This way you don't have

Re: Interesting question (to me)... Perl app conversion to SUNWappserver/Java/Struts

2006-05-09 Thread Gareth Evans
Hi, You could use a servlet mapped to *.pl (or whatever extension the perl system used) and get it to send a redirect to the appropriate part of the java system. Gareth Alan Treece wrote: As the Subject: line states I'm in the middle of converting a larger Perl application to a Struts

Re: [OT] JMS, RMI, CORBA, SOAP or what?

2006-03-29 Thread Gareth Evans
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL

Re: [OT] JMS, RMI, CORBA, SOAP or what?

2006-03-29 Thread Gareth Evans
, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web

Re: *** 50-100 *** text fields in JSP

2006-03-17 Thread Gareth Evans
commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk

Re: Exporting data to MS Word.

2006-03-01 Thread Gareth Evans
-mail or attachment. Infosys reserves the right to monitor and review the content of all messages sent to or from this e-mail address. Messages sent to or from this e-mail address may be stored on the Infosys e-mail system. ***INFOSYS End of Disclaimer INFOSYS*** -- Gareth Evans

Re: html:link passing parameters

2006-02-01 Thread Gareth Evans
] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk

Re: Enabling links according to user's authorization

2006-01-11 Thread Gareth Evans
the links and just let the database throw an exception and give a message to the user, when he/she presses an unauthorized link? Or is there a third and better way? Thanks Rivka -- Letícia Álvares Barbalho [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward

Re: Enabling links according to user's authorization

2006-01-11 Thread Gareth Evans
Message- From: Gareth Evans [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 11, 2006 2:59 PM To: Struts Users Mailing List Subject: Re: Enabling links according to user's authorization In addition to hiding the links, extend the requestprocessor to check against the current user and your

Re: Enabling links according to user's authorization

2006-01-11 Thread Gareth Evans
- From: Gareth Evans [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 11, 2006 3:25 PM To: Struts Users Mailing List Subject: Re: Enabling links according to user's authorization Hi Rivka, You could hide the links by creating a custom tag that only evaluates its body content if the current

Re: how to customize applicationresources

2005-12-16 Thread Gareth Evans
commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk

Re: page context

2005-11-25 Thread Gareth Evans
request.setAttribute() ? Bahadır Yağan wrote: Hi! Is there a way to register a bean from inside an Action, only for the next response. I have data to display on a JSP page. But it will only be needed for that page, so registering it to session seems an overhead to me. -- Gareth Evans

Re: page context

2005-11-25 Thread Gareth Evans
: request.setAttribute(clist, clist); JSP: logic:iterate id=category name=clist tr tda href=sunum.jsp?cid=${category.cid}${category.name}/a/td /tr /logic:iterate ps: no it is not a form bean. Gareth Evans wrote: request.setAttribute() ? Bahadır Yağan wrote: Hi! Is there a way

Re: Upgrade problems from 1.2.4 to 1.2.7

2005-11-07 Thread Gareth Evans
/resources/xml/validation.xml / /plug-in Anyone got any ideas?! Cheers :-) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology

Re: Struts dropdown boxes

2005-11-02 Thread Gareth Evans
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0

Re: App reload and session variables

2005-10-12 Thread Gareth Evans
, but there are no session variables. How can I avbid this? regards -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk

Re: html tags not parsed by taglibs

2005-10-11 Thread Gareth Evans
: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk

Re: Struts action forms crossing sessions? Anyideawhythisishappening?

2005-10-06 Thread Gareth Evans
PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port

Re: Adding a plug-in to a webapp

2005-09-19 Thread Gareth Evans
PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way

Re: How to replace normal html-from through html:form in Struts? Example

2005-09-13 Thread Gareth Evans
, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park

Re: Exception after File Upload.

2005-09-08 Thread Gareth Evans
this to the server.xml of Tomcat. Manager className=org.apache.catalina.session.StandardManager pathname=/ Can someone tell me what could be the root of this problem. -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN

Re: Overlaying a propery definition with 1 ApplicationResources.properties file

2005-09-07 Thread Gareth Evans
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870

Re: a simpler way?

2005-09-07 Thread Gareth Evans
. Then you can using the struts html tag as they are intended Regards, Gareth - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited

Re: [OT] AJAX (XMLHTTP) doesn't work with Ampersand

2005-09-06 Thread Gareth Evans
you post said code? We might be able to spot something there. Off-hand I can't think of what the problem might be, I don't think I've ever seen this before... I did see some issues with internationalized data at one point, but ampersand I don't think falls in that category. -- Gareth Evans

Re: [OT] AJAX (XMLHTTP) doesn't work with Ampersand

2005-09-06 Thread Gareth Evans
? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web

Re: [OT] AJAX (XMLHTTP) doesn't work with Ampersand

2005-09-06 Thread Gareth Evans
: Actually no. I am modifying legacy jsp/servlet code and not using Struts. What happens is, when the users selects a state from the dropdown, I make an ajax call to my servlet that returns a list of values to be populated in the dropdown. Does this help? Gareth Evans [EMAIL PROTECTED] wrote:I take

Re: [OT] AJAX (XMLHTTP) doesn't work with Ampersand

2005-09-06 Thread Gareth Evans
and populate the country dropdown. Does this help? Gareth Evans [EMAIL PROTECTED] wrote: Hi Bob, Even so, the request that your making to your 'ajax servlet', the url depends on the value of the first select box. Somthing like 'myajaxservlet?firstvalue=Australia' are you building this url

Re: img source path constructed inside an iterate tag

2005-09-02 Thread Gareth Evans
PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward

Re: Configurable Forms Fields Authorization

2005-08-26 Thread Gareth Evans
thoughts?? AJ -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk

Re: basic date field question

2005-08-25 Thread Gareth Evans
-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web

Re: basic date field question

2005-08-25 Thread Gareth Evans
Yes, I would do it that way Gareth Rivka Shisman wrote: Thanks guys But what if I already have a table with a date column (not long) - Should I hold java.util.Date in the VO and convert it to java.sql.Date in the DAO? Rivka -Original Message- From: Gareth Evans [mailto:[EMAIL

Re: editor for Tomcat and struts

2005-08-24 Thread Gareth Evans
on the Infosys e-mail system. ***INFOSYS End of Disclaimer INFOSYS*** - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited

Re: Problem with logic:present TAG

2005-08-23 Thread Gareth Evans
me the possible solution. Thanks in Advance Jeevan - Start your day with Yahoo! - make it your home page -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel

Re: Regarding bean:write/

2005-08-10 Thread Gareth Evans
toString is called on property. Can any body help me ? -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk

Re: Struts and Hibernate lazy

2005-08-10 Thread Gareth Evans
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web

Re: Regarding bean:write/

2005-08-10 Thread Gareth Evans
int property? Is it necessary to define resource file to display int property ? And does the # means in format=#? bean:write name=GraphStep1Form property=legendsAlignment format= / this also works. On 8/10/05, Gareth Evans [EMAIL PROTECTED] wrote: Correct me if i'm wrong... i think

Re: how to include a jsp into another

2005-08-10 Thread Gareth Evans
is rendered as expected, but when I try to display it with bean:write name=report / I don't see the content of the otherPage ,but the html code of it. I don't want to use scriplets to display the included page, just tags. Can you help me? -- Gareth Evans MSoft eSolutions Limited Technology Centre

Re: Instantiation of form bean

2005-08-10 Thread Gareth Evans
member object. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire

Re: [OT]List of crrently running threads in JVM

2005-08-10 Thread Gareth Evans
for this OT but had no other option.. Is there any way in java to list all the currently executing thread in a running JVM process?? Thanks IN Advance Prashanth Send instant messages to your online friends http://asia.messenger.yahoo.com -- Gareth Evans MSoft eSolutions Limited Technology

Re: validate() not called haunts

2005-08-10 Thread Gareth Evans
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel

Re: Problems configuring Tiles

2005-08-08 Thread Gareth Evans
(Unknown Source) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited

Re: retrieving message from application.resources file

2005-08-08 Thread Gareth Evans
: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web

Re: Showing a PDF inside a JSP

2005-08-05 Thread Gareth Evans
] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web:www.msoft.co.uk -- Terms: Please

Re: Logon redirect - Construct ActionForward on the fly ?

2005-08-04 Thread Gareth Evans
. sorry . I'm German .all language mistakes exclusively C by myself ;) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward

Re: how can I add request parameters to url ?

2005-08-03 Thread Gareth Evans
? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010 705 E-Mail: [EMAIL PROTECTED] Web

Re: Loading properties

2005-08-02 Thread Gareth Evans
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Gareth Evans MSoft eSolutions Limited Technology Centre Inward Way Rossmore Business Park Ellesmere Port Cheshire CH65 3EN -- Tel:+44 (0)870 0100 704 Fax:+44 (0)870 9010