How to create frames with components?

bradmoss

New member
Joined
Dec 20, 2005
Messages
3
Programming Experience
1-3
I need to create a default page with frames where I can later locate web components like a header at the top, a footer at the bottom and a menu at the side.

Can somebody please give me a tip on how do I do this in .Net ?
TIA
Brad.-
 
Please post in the most appropriate forum. This is obviously an ASP.NET question and not related to the VS IDE so it should have been posted in the ASP.NET area. Moved.
 
Are u talking about frames like these shown on the pic below? If so then you can make it by adding a file and selecting frameset from templates. Then you can include any file/form in any frame respectively i.e.

VB.NET:
<% Response.WriteFile ("Yourfile.inc") %>


HTH
Regards ;)
 

Attachments

  • frames.jpg
    frames.jpg
    47.5 KB · Views: 74
Last edited:
I use a tool to develop applications by the name of "Genexus"
In the main page of what I am developing I define what is called "a table" (just a kind of grid in the page) and then I can insert in any cell of the grid any other page.

So I have a header page that I insert in the first row of the pages my application has, the same with a footer in the last row and a menu page in the first column from the left in the "body" of my main page.

The application generates java or .net code automatically, I wanted to know how to do that directly in asp.net

Thank you again.
 
Back
Top