Event passback to another page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to have a popup window that displays a datagrid, when the user
clicks on a columnbutton it will passback the ID of the row to the parent
page. The parent page will then add a row to it's datagrid and set that row
as the SelectedIndex for the user to edit.

How can I accomplish this?

I know you can use some javascript to populate a textbox based on a
selection from a calender, but I don't think that will help me in the
situation.

Thanks in advance.

-Andy
 
use client script to update a hidden field on the main page with the
selected id, then postback the mainpage.

-- bruce (sqlwork.com)

| I'm trying to have a popup window that displays a datagrid, when the user
| clicks on a columnbutton it will passback the ID of the row to the parent
| page. The parent page will then add a row to it's datagrid and set that
row
| as the SelectedIndex for the user to edit.
|
| How can I accomplish this?
|
| I know you can use some javascript to populate a textbox based on a
| selection from a calender, but I don't think that will help me in the
| situation.
|
| Thanks in advance.
|
| -Andy
 
Back
Top