Ticket Q473995
Visible to All Users

How to set Custom Web Template in Global.asax from Module.Web Project.

created 12 years ago

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?

Answers approved by DevExpress Support

created 12 years ago (modified 12 years ago)

Hi Nikesh.
The WebApplication.Instance.Settings object properties are appropriate for templates declared at design time as markup files and located in the application project directory (Solution.Web). If you have an XAF web template control built into a module, handle the XafApplication.CreateCustomTemplate event and assign your control instance to the e.Template parameter. In this case, your control must represent the entire web page (e.g. a BaseXafPage descendant), rather than an inner content control.

    Show previous comments (7)
    DevExpress Support Team 12 years ago

      There is no need to place your user control into the Default.aspx template - do to this the navigation tree displayed within a popup window. To use your template, you only need to create its instance in the InitContent method.

      C#
      this.templateContent = new ASP.defaultverticaltemplatecontent1_ascx();

      Your first attempt throws NullReferenceException because you instantiated the original user control without its design-time part. The class in the code above is from a precompiled assembly, which contains a complete user control class.
      The modified project is attached.

        Thanks Michael, it works well now.

        DevExpress Support Team 12 years ago

          You are welcome, Nikesh.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.