Advertisement

10.09.2008 at 11:38AM PDT, ID: 23801944
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.0

How do I access a shared property on a MasterPage on other pages?

Asked by Anders-Leet in Active Server Pages (ASP), Microsoft Visual Basic.Net

Tags: ,

I have a web site that I am developing that uses a MasterPage.  On my layout I have a navigation bar that highlights the the current page, as long as the page's link on the bar has an id of "current".  My aim is to have a programmatic solution to set the appropriate link's id to current when changing pages.  I got a suggestion to do a property on the MasterPage, but I can only access it on my MasterPage's  backend.  Code snippet has the section on the MasterPage I am referring to, as well as its backend and a content page. Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
//MasterPage Backend
 
Partial Class MasterPage
    Inherits System.Web.UI.MasterPage
    Public Property PageSection() As String
        Get
            Return String.Format("id={0}", Chr(34) & "current" & Chr(34))
        End Get
        Set(ByVal value As String)
 
        End Set
    End Property
 
    Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Me.PageSection = "home"
 
    End Sub
End Class
 
//MasterPage Frontend
<div id="nav_main">
  <ul>
    <li id="nav_home"><a href="default.aspx">Home</a></li>
    <li id="nav_faq"><a href="faq.aspx">FAQ</a></li>
    <li id="nav_vid"><a href="#">Videos</a></li>
    <li id="nav_ph1"><a href="#">Button 4</a></li>
    <li id="nav_ph2"><a href="#">Button 5</a></li>
  </ul>
</div>
 
//content
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="faq.aspx.vb" Inherits="faq" title="Untitled Page" %>
<%@ MasterType VirtualPath="~/MasterPage.master" %>
[+][-]10.09.2008 at 12:36PM PDT, ID: 22681679

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]10.09.2008 at 12:43PM PDT, ID: 22681736

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Active Server Pages (ASP), Microsoft Visual Basic.Net
Tags: ASP.NET & VB.NET, All Major Browsers
Sign Up Now!
Solution Provided By: Anders-Leet
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628