Hi Bluejeanas465,
for what you want to do I would absolutely recommend to use ASP.NET 2.0 and Masterpages. Have a look here:
http://msdn2.microsoft.com/en-us/library...> http://msdn2.microsoft.com/en-us/library.../a>
If you use ASP.NET 2.0, you add a new item which is your master page. You design and develop the components and code. Then if you want to create a page based on this masterpage, you add new item, select a webpage, check the check box "Select Masterpage" and pick your master page. This inherits everything from the masterpage.
Hope this helps
Cheers
Petr
|
|
Expert:
|
PeterNZ
|
|
Date:
|
Oct 01, 2006
|
|
Time:
|
21:23
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
What PeterNZ is writing is true, but probably not the easiest way for you to go about it in asp.net.
If you want to "simulate" normal asp/php-include-files you can do like this:
In the top of your include files write:
<%@ Control Language="VB" EnableViewState="False" %>
and save them with .ascx extension
Then in your main file put Register directives at the top of the page:
<%@ Register TagPrefix="UserControl1" TagName="Top" Src="top.ascx" %>
<%@ Register TagPrefix="UserControl2" TagName="Bottom" Src="top.ascx" %>
and between the <body> tags put
<body>
<UserControl1:Top runat="server" />
<UserControl2:Bottom runat="server" />
</body>
This is definitely not taking advantage of how asp.net is used best, but it might make the transition easier for you to start out like this.
|
|
Expert:
|
Anpanman
|
|
Date:
|
Oct 02, 2006
|
|
Time:
|
14:24
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
well thanx for the response but i am not using .net 2.0 but making plan for moving to 2.0
thanx agian for it
|
|
Expert:
|
bluejeans465
|
|
Date:
|
Feb 10, 2007
|
|
Time:
|
11:21
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
bluejeans465, please close this question and distribute the points.
If you didn't get a solution to your problem or you found it yourself, please leave a comment here to let the experts know.
Thanks,
Quomon Admin
|
|
Expert:
|
admin
|
|
Date:
|
Jun 25, 2007
|
|
Time:
|
05:45
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
The question has been closed.
Quomon Admin
|
|
Expert:
|
admin
|
|
Date:
|
Jul 02, 2007
|
|
Time:
|
09:35
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
|
|
|
|
This question has been answered, and points have been rewarded to the following experts:
You're welcome however to comment or give additional information or if you wish, you have the ability to write an Answer Summary for this question by clicking on the "Answer Summaries" Tab.
|
|