Pass Querystring to window

  1. #1

    Pass Querystring to window

    Hi,

    I am opening a new window on click of GridPanel Double click Direct event. I want to pass data to the new window, which a form in the form of querystring. I also want to refresh the Parent page when the child window is closed.
    My Window code is this
    <ext:Window ID="Window1" runat="server" Ttle="Window" Width="400" Height="185" Hidden="true">
                <Loader ID="Loader1"
                    runat="server" 
                    Url="NewContinent.aspx?" 
                    Mode="Frame" 
                    DisableCaching="true"
                    TriggerEvent="show"
                    ReloadOnEvent="true">
                    <LoadMask ShowMask="true" />
                </Loader>
                <Listeners>
                    <Hide Handler="this.clearContent();" />
                </Listeners>
            </ext:Window>
    I am opening the window, using this line of code 'Window1.Show();'

    I want to pass data using querystring on new page i.e. NewContinent.aspx page.

    Thanks in advance
    Last edited by Daniil; Jun 13, 2014 at 9:02 AM. Reason: Please use [CODE] tags
  2. #2
    Hi @rashidsiddique,

    Please use a Loader's Params.
  3. #3
    Thanks Daniil's for your reply.

    I have succeeded in passing the querystring to new window by setting the window url in direct event.
    Window1.Loader.Url = "PageUrl.aspx?QueryString=" + "Value";
    But i am unable to close the window on click of button present in the child page. Also i want to refresh the parent page with the updated data. Is their any event? I have mentioned this thing in my question also
    Please help.

    Thanks
    Last edited by Daniil; Jun 14, 2014 at 8:13 AM. Reason: Please use [CODE] tags
  4. #4
    Please keep one issue per thread. You are welcome to start new threads for another questions.

Similar Threads

  1. Replies: 3
    Last Post: Sep 26, 2013, 2:36 PM
  2. [CLOSED] load page with querystring in a extnet window
    By onsite in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Aug 26, 2013, 5:56 AM
  3. Replies: 4
    Last Post: Sep 08, 2011, 5:56 PM
  4. Pass querystring in Autoload URL
    By jmilton in forum 1.x Help
    Replies: 4
    Last Post: Apr 15, 2009, 11:06 AM
  5. Replies: 3
    Last Post: Mar 12, 2009, 3:09 PM

Tags for this Thread

Posting Permissions