Re: So a simple question in place of earlier one...

2007-04-04 Thread Wojtek Ciesielski
Sam Gendler wrote: Generally, you would make sure the page implements the IExternalPage interface. That allows you to specify parameters in a link and ... --sam Thanks a lot Wojtek -- Wideofelietony Tadeusza Mosza. O biz

Re: So a simple question in place of earlier one...

2007-04-04 Thread Sam Gendler
Generally, you would make sure the page implements the IExternalPage interface. That allows you to specify parameters in a link and receive them when the page is activated. If you just need to generate the URL, you can create an instance of an ILink via the ExternalService and then get the URL f

So a simple question in place of earlier one...

2007-04-04 Thread Wojtek Ciesielski
Hi can I obtain full textual (ie. as a String) URL to a page with some parameters? Let's say that I have a page PageBeingCalled with a string property: public class PageBeingCalled extends BasePage { public abstract void setMyProperty(String prop); public abstract String getMyProperty();