Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi, I am getting the error :
System.Exception: No physical template file was found for template SkinCare
In Umbraco backend I have DocumetType SkinCare and template SkinCare. The template SkinCare inherits from the parent template.
@{ Layout = "ParentPage.cshtml"; }
in SkinCareController I have the following code:
public class SkinCareController : RenderMvcController { // GET: SkinCare public ActionResult SkinCare(RenderModel model) { return base.Index(model); } }
But when I try browse the page SkinCare I am getting the above mentioned error.
What I am doing wrong here ?
Thanks
If you create the documenttype without a template and then later create the template, you still need to "match" the two..
Check to see that your documenttype has a default template chosen on your documenttype:
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
System.Exception: No physical template file was found for template SkinCare
Hi, I am getting the error :
In Umbraco backend I have DocumetType SkinCare and template SkinCare. The template SkinCare inherits from the parent template.
in SkinCareController I have the following code:
But when I try browse the page SkinCare I am getting the above mentioned error.
What I am doing wrong here ?
Thanks
If you create the documenttype without a template and then later create the template, you still need to "match" the two..
Check to see that your documenttype has a default template chosen on your documenttype:
is working on a reply...