Skip to content

Instantly share code, notes, and snippets.

@amirkhan81
Last active March 16, 2017 19:51
Show Gist options
  • Save amirkhan81/337c4ad060df3f95c63fd27a4d4a59e7 to your computer and use it in GitHub Desktop.
Save amirkhan81/337c4ad060df3f95c63fd27a4d4a59e7 to your computer and use it in GitHub Desktop.
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
@{
Layout = "Layout.cshtml";
}
@helper helperName(string textStringName) {
if (!String.IsNullOrEmpty(textStringName)) {
<div>@textStringName</div>
}
}
<div>
@helperName(valuetopass)
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment