Using Frame with aspx?

  • Thread starter Thread starter exshige
  • Start date Start date
E

exshige

Can i use a html container that host a Frame and load up multiple aspx page?
If can, how can I pass information between these aspx files?

Or is there any ASP way of doing the above without using frame? What i want
is for a part of the screen to remain still while scrolling in order to
display some information that need to be shown all the time.
 
Frames are complex to use in ASP.NET. I don't recommend them unless you're
very comfortable with client side code because it will probably be necessary
to communicate between frames.

Alternately, you can use a div for a scrolling region of your page while the
rest of the page stays in place.
 
why somhow the div contents doesn't goes along with other tag like table or
br tag? I tried a tutorial on the js scroll effect and it works. When i
tried to add in more stuffs like tables and br stuffs.. the portion of the
div remain the same on the spot and everything just overlapping each other.

How come?
 
Back
Top