473,769 Members | 8,283 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Master Pages or Frames

I have to developer a site like the CRM of Microsoft (the user
interface), my original idea was do it with frames but, other friends
said me that not is correct, my site is as a template (header,left
menu,footer).

Wich is the best way to do it with master pages or frames, i'm trying
not load the menu in all pages.

Sorry my bad english!!!!

Thanks for you time,

Regards,
Aug 11 '08 #1
8 1635
"Kojikabuto sv" <ko**********@g mail.comwrote in message
news:%2******** *********@TK2MS FTNGP06.phx.gbl ...
Which is the best way to do it with master pages or frames
Whichever is the more appropriate architecture for your web app.

Incidentally, MasterPages are not somehow the ASP.NET equivalent of
framesets. The two are not remotely similar - this is very common
misconception.. . A MasterPage is nothing more than a UserControl.
I'm trying not to load the menu in all pages.
Why?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Aug 11 '08 #2
>
>I'm trying not to load the menu in all pages.

Why?
Thanks Mark for you time.

Actually, I'm starting in ASP.NET, and i'm sorry if my questions are basics.

About of the menu, Do you see the Microsoft CRM ? in this app, the menu
is not loaded in all pages only at the beginning and then load each page
(on the rigth side) of each link of the menu.

Thanks again!!!!

Jorge Díaz
Aug 11 '08 #3
"Kojikabuto sv" <ko**********@g mail.comwrote in message
news:ON******** ******@TK2MSFTN GP05.phx.gbl...
>>I'm trying not to load the menu in all pages.

Why?

Thanks Mark for you time.

Actually, I'm starting in ASP.NET, and i'm sorry if my questions are
basics.

About of the menu, Do you see the Microsoft CRM?
Yes.
in this app, the menu is not loaded in all pages
Assuming you're looking at the latest version, then I think you'll find that
it is...

As mentioned previously, a MasterPage is a UserControl - it doesn't simulate
an HTML frameset. Like all UserControls, a MasterPage is loaded every time
its parent page (which, in this case, is a content page) is loaded. That's
the way MasterPages work. I understand fully that the term "MasterPage "
causes confusion - IMO, Microsoft should have named them something like
LayoutControls. ..

So, to reiterate, if you want framesets in ASP.NET, MasterPages won't help
you. But in ASP.NET, especially with the advent of AJAX, framesets simply
aren't required...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Aug 11 '08 #4
regarding frames, in 2.0 or more recent, does each frame have it's own
session? If yes, then how to get around that?
"Mark Rae [MVP]" <ma**@markNOSPA Mrae.netwrote in message
news:OK******** ******@TK2MSFTN GP03.phx.gbl...
"Kojikabuto sv" <ko**********@g mail.comwrote in message
news:ON******** ******@TK2MSFTN GP05.phx.gbl...
>>>I'm trying not to load the menu in all pages.

Why?

Thanks Mark for you time.

Actually, I'm starting in ASP.NET, and i'm sorry if my questions are
basics.

About of the menu, Do you see the Microsoft CRM?

Yes.
>in this app, the menu is not loaded in all pages

Assuming you're looking at the latest version, then I think you'll find
that it is...

As mentioned previously, a MasterPage is a UserControl - it doesn't
simulate an HTML frameset. Like all UserControls, a MasterPage is loaded
every time its parent page (which, in this case, is a content page) is
loaded. That's the way MasterPages work. I understand fully that the term
"MasterPage " causes confusion - IMO, Microsoft should have named them
something like LayoutControls. ..

So, to reiterate, if you want framesets in ASP.NET, MasterPages won't help
you. But in ASP.NET, especially with the advent of AJAX, framesets simply
aren't required...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Aug 12 '08 #5
"my cats, Gag and yak" <mr********@com cast.netwrote in message
news:bo******** *************** *******@comcast .com...

[top-posting corrected]
regarding frames, in 2.0 or more recent, does each frame have it's own
session? If yes, then how to get around that?
Don't use frames - they're not needed in ASP.NET.

Or, if you really can't get your head round that and absolutely must use
framesets:
http://support.microsoft.com/kb/323752
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Aug 12 '08 #6
Thank you Mark and Gag and Yak, i'm appreciate your time for helpme

Regards,

"Mark Rae [MVP]" <ma**@markNOSPA Mrae.netescribi ó en el mensaje
news:O1******** ******@TK2MSFTN GP05.phx.gbl...
"my cats, Gag and yak" <mr********@com cast.netwrote in message
news:bo******** *************** *******@comcast .com...

[top-posting corrected]
>regarding frames, in 2.0 or more recent, does each frame have it's own
session? If yes, then how to get around that?

Don't use frames - they're not needed in ASP.NET.

Or, if you really can't get your head round that and absolutely must use
framesets:
http://support.microsoft.com/kb/323752
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Aug 12 '08 #7
I'd suggest you go with Master Pages. (Framesets tend to come with a whole
host of other problems you'd probably need to solve once you get into it.)

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net
http://iPhonePlaza.net
"Kojikabuto sv" <ko**********@g mail.comwrote in message
news:%2******** *********@TK2MS FTNGP06.phx.gbl ...
>I have to developer a site like the CRM of Microsoft (the user interface),
my original idea was do it with frames but, other friends said me that not
is correct, my site is as a template (header,left menu,footer).

Wich is the best way to do it with master pages or frames, i'm trying not
load the menu in all pages.

Sorry my bad english!!!!

Thanks for you time,

Regards,
Aug 13 '08 #8
my cats, Gag and yak wrote:
regarding frames, in 2.0 or more recent, does each frame have it's own
session?
No. Not if they are on the same server and part of the same ASP.NET app.

Aug 15 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

20
3372
by: M.Siler | last post by:
Let me first by saying I am NOT a .net programmer, but am very skilled with ASP, JavaScript, HTML, DHTML, Flash development. I've been reading through posts here about Frames vs. Master Pages and there seems to be the thought of why use Frames when you can use a Master Page? How does a Master Page only update a section without re-displaying the entire page. We have a site that has some small swf banners for lack of a better term that we...
8
4328
by: David Thielen | last post by:
Hi; Any strong arguments on using master pages vs frames when the header & footer are always the same and the main body is the part that keeps changing? -- thanks - dave
17
3161
by: Rob R. Ainscough | last post by:
Again another simple concept that appears NOT to be intuitive or I'm just stupid. I've read the WROX book and the example doesn't actually show how the .master page links in the other content pages? Kinda sorta a critical point no? Am I missing something? Rob. P.S. the day I find a book that actually is useful rather than just a
5
2501
by: Ryan | last post by:
Is there any way to apply a master page to existing pages that weren't previously using a master page? VB 2005. Thanks, Ryan
2
1548
by: Ralph | last post by:
I'm upgrading and rewriting an old site to asp.net 2.0. Most definately want to replace frames and framesets with Masterpages. There was one and really only one feature of frames that I prefered. It seemed with frames I could much easier limit people to one point of entry to my site. That being index.html. Assuming users didn't have java script disabled I could make sure that even if a user bookmarked somepage in my site they always...
4
18010
by: Rob | last post by:
Hi, I have a master page that contains a table layout. The contentplaceholder is located in one of the table cells. With frames technology it was possible for hyperlinks to load the linked pages into a frame without having to reload any other frames. Is it possible to replicate this kind of behaviour using master pages and content pages? In other words, I want only the cell that contains the contentplaceholder to refresh when the...
7
1325
by: Dwight Johnson | last post by:
I am attempting to use Master Pages in a new website, and finding it troublesome. I also do not see a lot of entries in this group regarding them or their components, such as ContentPlaceHolders. So my question is: do I really want to invest the time to learn Master Page technology, or not? Does anyone have an opinion on this (silly question?) Dwight
4
6058
by: Harlequin | last post by:
I have a question concerning the need to trigger events within a "child" subform which is itself enbedded within a master "parent" form and which is accessible via a tab in the parent form. Becuase this is all very difficult to explain in words, please bear with me as I endevour to explain what it is I am trying to do. It would be helpful if I could attach a graphics file to this posting that would help explain what it is I'm trying to achieve...
1
1588
by: Nilam2477 | last post by:
I have Web application. In most of the forms Frames are used. We are planning to use Master pages instead of frames. Could you please let me know what are the advantages of using Master pages over frames?
0
9589
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10219
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9998
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9865
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5310
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3567
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.