moving data from one frame to another

  • Thread starter Thread starter MW
  • Start date Start date
M

MW

Hi,

I am not that familiar with frames, but I'm working on a
page that has frames on it.

In one frame I have a datagrid, when I click on the
select button of a row in the grid, I need to make things
happen in the frame below. I know how I can move the
data that I need around, but what I'm missing is the
postback. When I click on the datagrid it posts back in
the top frame, but the bottom frame doesn't.

Is there a way to force it? Or is there some other
simple solution that I'm not seeing?

Thanks,
MW
 
there are only two ways to post to another frame, set the form target, not
supported with asp.nets postback model, or use client script. security
requires they be the same domain.

-- bruce (sqlwork.com)
 
That's what I suspected.

Thanks.
-----Original Message-----
there are only two ways to post to another frame, set the form target, not
supported with asp.nets postback model, or use client script. security
requires they be the same domain.

-- bruce (sqlwork.com)




.
 
Back
Top