Passing multiple data
I have a problem to pass multiple data using gridview.
I Have one page using master page and the other one is the popup page but both using gridview.
In the ordinary page, the gridview have textbox,button and label in the template.
when i click the button it will open the popup page.Let say the popup page have gridview with data such as item code and company name.
My problem is i can pass the item code in the textbox in other page but the company name i can't sent to label.I want the data passed directly to the master page and close the popup page.
This is the example of the code that i used...
"window.opener.document.aspnetForm.ctl00_cph_main_ gv_MaklumatItem_ctl02_txtKodItem.value = '" & (Session("skodItem")) & "' ;window.close()"
Hope somebady will help me...
|