
- Forum
- Programming Talk
- Microsoft .NET
- frames
frames
This is a discussion on frames within the Microsoft .NET forums, part of the Programming Talk category; iam trying frames in asp.i have succeeded in retrieving the frames in my application fm .htm pages which i have ...
-
frames
iam trying frames in asp.i have succeeded in retrieving the frames in my application fm .htm pages which i have made in notepad.But how i can get the aspx from as one of my frame,as i want the GUI in the frames.
-
You would call an aspx page in a frame in a similar fashion as you would call a htm page.
Here's what you could do,
HTH!!!HTML Code:<frameset cols="20%,80%"> <frame name="leftframe" src="leftlinks.html"> <frameset rows="15%,*,15%"> <frame name="topframe" src="header.html"> <frame name="contentframe" src="content.aspx"> <!-- This is how you could have an aspx in a frame --> <frame name="bottomframe" src="footer.html"> </frameset> </frameset>

Reply With Quote





