figuerres said:Well it depends on what you mean by "Master Page"
first there is the Navigation framework - by default if you use the templates that use that you get a "Parent" page that loads "child" pages that will share the parent's default style settings.
also you can create a style set that uses implied styles to make the UI look the same for each page by default.
the navigation framework does not share code in partail classes the way an ASP.NET master page does.
what are you looking for? visual look or code sharing or ???
Thanks for your reply.
I have an existing web application (2.0 framework).Now i am trying to create the same application in Silverlight 4.0.
The 2.0 web application which i have has nearly 6 master pages..lets say for example i have
1)Admin.Master
2)Product.Master
3)Customer.Master
4)Merchant.Master...so on...
When ever i redirect to the page that inherits from the corresponding master pages the menus will be loaded in the master page left hand side.
I wanna to do the same in my silverlight using MVVM Patter.
This time i am gonna use WCF Service instead of DateLayer which i have used in 2.0 web application.....
Could you help me with some ideas....