Query String

Hi Friends,

I am opening a page through web using command <a herf=./myPage?OpenPage&id=Accounting and Finance>openPage

while using this id return only “Accounting” where as “and Finance get truncated”. I would like to know is query string will be continus text. then how would I retrive it if such type if id we need at run time.

Id may be one word, two word or more than this

Pls help

Regards,

Vikas K Sinha

Subject: Query String

Anything you want to feed as a url parameter must confirm to url syntax. Spaces are not allowed. You can user @UrlEncode on your parameter prior to adding it and either @UrlDecode or Query_String_Decoded instead of Query_String to retrieve it on the target page.