Created
May 13, 2016 15:32
-
-
Save rbaty-barr/45aafb7ae93a7e4dce965c53b66bc35d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this can be used right on a template | |
// example woudl be to redirect FAQ Items up to the parent category | |
// this example has a built in achor to expand a hide show item on the parent | |
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage | |
@{ | |
Layout = null; | |
} | |
@{ | |
var faqCat = Model.Content.Parent; | |
var newUrl = faqCat.Url + "#HSCol-" + Model.Content.Id; | |
Response.Redirect(newUrl); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment