display datagrid in seperate frame

justjosh

New member
Joined
Jul 9, 2003
Messages
3
Location
Arizona
Hello,

Ive got a functinon that calls a sql query, I then want to send the results into a datagrid into a page on a different frame.

it looks something like this:
__________
submit form |
__________|
datagrid |
__________|

If you have any ideas I would appreciate it.

I am already familiar with pushing the information and displaying the datagrid, just need to figure out how to display the datagrid in the other HTML Frame.

Thanks a bunch
 
ASP.NET does not provide any outward support for frames, nor should it. Any solution would be a hack, at best, and it would most definately be limited to loading the DataGrid from the frames page and not from another document. I strongly suggest you remove any frames from your site if that is an option. Most frame-specific functionality can be achieved using CSS and layers.
 
Back
Top