Master Page Template

  • Thread starter Thread starter Ryan
  • Start date Start date
R

Ryan

Is there any way to apply a master page to existing pages that weren't
previously using a master page? VB 2005.

Thanks,
Ryan
 
Ryan,

That is in my opinion not with a correct answer to answer question.

Of course it can, but than is it how are those existing pages build.

There in my opinion nowhere so much methods that can make a page as with
webpages. (I am not talking about the raw HTML results but the page the
developer is making)

If you have in past used frames or Iframes than it is in my idea very simple
for those frames.

Cor
 
Sorry Cor I'm having trouble understanding you're answer.

I have numerous pages that I want to have the same surrounding art (a header
banner espescially). It was my understanding that using a MasterPage
template is the way to do this in VB 2005. I already have my pages created
for functionality, now I just want to add some artwork to the top of all of
the pages. Are you saying I should redesign the pages to use frames?

Thanks,
Ryan
 
Hi Ryan,

Thank you for your post.

Unfortunately existing pages that weren't previously using a Master Page
must be tailored to be used with MasterPage.

Pages will use the MasterPage is called a Content page. In a content page,
anything that is not inside the Content (<asp:Content>) controls (except
script blocks for server code) results in an error. You can perform any
tasks in a content page that you do in an ASP.NET page. For example, you
can generate content for a Content control using server controls and
database queries or other dynamic mechanisms.

You can find more information about MasterPage here:

#ASP.NET Master Pages Overview
http://msdn2.microsoft.com/en-us/wtxbf3hh.aspx

Please feel free to post here if you need more help on Master Pages.


Regards,
Walter Wang
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top