Skip to content

Instantly share code, notes, and snippets.

@prabirshrestha
Created October 5, 2012 14:27
Show Gist options
  • Save prabirshrestha/3840071 to your computer and use it in GitHub Desktop.
Save prabirshrestha/3840071 to your computer and use it in GitHub Desktop.
if (string.IsNullOrWhiteSpace(context.ModulePath))
return null;
if (viewName.StartsWith("~/"))
return viewName.Substring(2);
return string.Concat("Views/", context.ModulePath, "/", context.ModuleName, "/", viewName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment