Last active
March 16, 2017 19:51
-
-
Save amirkhan81/337c4ad060df3f95c63fd27a4d4a59e7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@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