Advertisement
Advertisement
| 03.12.2008 at 08:31PM PDT, ID: 23237472 |
|
[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: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: |
SAMPLE CODE A: KEEPING THE 'ACTIVE' BANNER OPEN
=================================================
Imports AjaxControlToolkit
Partial Class UnderConstruction
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim mpAccordion As Accordion
mpAccordion = CType(Master.FindControl("AccordionLBanner"), Accordion)
mpAccordion.SelectedIndex = clsShared.apID._EVENTS '// in this case, = 2
End Sub
End Class
SAMPLE CODE B: master.findcontrol DOESN'T RETURN THE SECOND-LEVEL ACCORDION CONTROL...
=========================================
Imports AjaxControlToolkit
Partial Class Services_Geriatric
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim mpAccordion As Accordion
' ============================================================
' NOTE: THIS IS THE PAGE_LOAD CODEBEHIND FOR A PAGE CALLED Geriatric.aspx.
' mpAccordion returns NOTHING.
'====================================================================
'
mpAccordion = CType(Master.FindControl("ac_Services"), Accordion)
mpAccordion.SelectedIndex = clsShared.apServices._SHARED '// in this case, 3
End Sub
End Class
SAMPLE CODE C: MASTER PAGE STRUCTURE (SOME CODE OMITTED)
=========================================================
<cc1:Accordion
ID="AccordionLBanner"
runat="server"
fadetransitions=true
framespersecond="60"
TransitionDuration="250"
AutoSize="none" SuppressHeaderPostbacks=true
HeaderCssClass="accordionHeader"
ContentCssClass="accordionContent">
<Panes>
<cc1:AccordionPane ID="ap_Home" runat="server">
<Header>
Home
</Header>
<Content>
<asp:HyperLink ID="hypHome" runat="server" NavigateUrl="~/Default.aspx">Home</asp:HyperLink><br />
<asp:HyperLink ID="hypMission" runat="server" NavigateUrl="~/Mission.aspx">Mission Statement</asp:HyperLink><br />
<asp:HyperLink ID="hypHistory" runat="server" NavigateUrl="~/History.aspx">History</asp:HyperLink><br />
<asp:HyperLink ID="hypEligibility" runat="server" NavigateUrl="~/Eligibility.aspx">Eligibility</asp:HyperLink><br />
<asp:HyperLink ID="hypAccreditations" runat="server" NavigateUrl="~/Accreditation.aspx">Accreditations</asp:HyperLink><br />
<asp:HyperLink ID="hypTestimonial" runat="server" NavigateUrl="~/testimonial.aspx">Testimonials</asp:HyperLink>
</Content>
</cc1:AccordionPane>
.
.
.
<cc1:AccordionPane
ID="Services"
runat="server">
<Header>
Services
</Header>
<Content>
<cc1:Accordion
ID="ac_Services"
runat="server"
fadetransitions=true
framespersecond="60"
TransitionDuration="250"
AutoSize="none" suppressheaderpostbacks=true
HeaderCssClass="accordionHeader"
ContentCssClass="accordionContent">
<Panes>
<%--MI SERVICES SUB-PANE--%>
<cc1:AccordionPane
ID="ap_MI_Services"
runat="server">
<Header>
MI Services
</Header>
<Content>
<asp:HyperLink ID="hypAct" runat="server" NavigateUrl="~/Services/ACT.aspx">ACT</asp:HyperLink><br />
<asp:HyperLink ID="hypCSM" runat="server" NavigateUrl="~/Services/CaseManagement.aspx">Case Management</asp:HyperLink><br />
<asp:HyperLink ID="hypDBT" runat="server" NavigateUrl="~/Services/DBT.aspx">DBT</asp:HyperLink><br />
</Content>
</cc1:AccordionPane>
<%--DD SERVICES SUB-PANE--%>
<cc1:AccordionPane
ID="ap_DDServices"
runat="server">
<Header>
DD Services
</Header>
<Content>
<%--REMOVED FAMILY SERVICES LINE FOR NOW - REF IS STILL THERE--%>
<%--<a href=/TTI2008/Services/FamilyServices.aspx>Family Services</a><br />--%>
<asp:HyperLink ID="hypSC" runat="server" NavigateUrl="~/Services/SupportsCoordination.aspx">Supports Coordination</asp:HyperLink><br />
<asp:HyperLink ID="hypReach" runat="server" NavigateUrl="~/Services/Reach.aspx">Project R.E.A.C.H.</asp:HyperLink>
</Content>
</cc1:AccordionPane>
<%--SUPPORT SERVICES SUB-PANE--%>
<cc1:AccordionPane
ID="ap_SupportServices"
runat="server">
<Header>
Support / Secondary Services
</Header>
<Content>
<asp:HyperLink ID=hypSSO runat="server" NavigateUrl="~/Services/SupportServicesOverview.aspx">Support Services Overview</asp:HyperLink><br />
<asp:HyperLink ID=hypGeriatric runat="server" NavigateUrl="~/Services/Geriatric.aspx">Geriatric</asp:HyperLink><br />
<asp:HyperLink ID=hypHousing runat="server" NavigateUrl="~/Services/Housing.aspx">Housing</asp:HyperLink><br />
<asp:HyperLink ID=hypOT runat="server" NavigateUrl="~/Services/OccupationalTherapy.aspx">Occupational Therapy</asp:HyperLink><br />
<asp:HyperLink ID=hypPsychoTherapy runat="server" NavigateUrl="~/Services/Psychotherapy.aspx">PsychoTherapy</asp:HyperLink><br />
<asp:HyperLink ID=hypGroupTherapy runat="server" NavigateUrl="~/Services/Psychotherapy.aspx">Group Therapy</asp:HyperLink><br />
<asp:HyperLink ID=hypResidential runat="server" NavigateUrl="~/Services/Residential.aspx">Residential Services</asp:HyperLink><br />
<asp:HyperLink ID=hypClubhouse runat="server" NavigateUrl="~/Services/Clubhouse.aspx">Clubhouse (P.S.R.)</asp:HyperLink>
</Content>
</cc1:AccordionPane>
</Panes>
</cc1:Accordion>
</Content>
</cc1:AccordionPane>
.
.
.
</Panes>
</cc1:Accordion>
|