Advertisement
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.
Your Input Matters 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! |
||
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" %>
|