I have added CustomWebTemplate say MyDefaultVerticalTemplateContent in Solution.Module.Web and then I have added below line of code
in Global.asax
C#WebApplication.Instance.Settings.DefaultVerticalTemplateContentPath = "MyDefaultVerticalTemplateContent.ascx"
But it is giving error… MyDefaultVerticalTemplateContent.ascx is not found.
If I put MyDefaultVerticalTemplateContent.ascx in Solution.Web then it’s working fine but if I put this file in Solution.Module.Web then it’s starts giving error. I want to add Template in Solution.Module.Web and not in Solution.Web. Is there any way to achieve this?