Git Product home page Git Product logo

Comments (3)

scottnickel avatar scottnickel commented on July 30, 2024

Update:

The fuctionality for supporting the @html, @url and any other helpers for MVC needs to be added by creating your own ITemplate and ITemplate<> classes. See the MvcTemplateBase class in the Web folder.

In this class, you will need to implement properties that expose Html (HtmlHelper) and Url (UrlHelper) properties. These classes will have to be instantiated internally to this class.

UrlHelper - Can be obtained from the HttpContextWrapper.CurrentHandler

using System;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

HttpContextWrapper httpContextWrapper = new HttpContextWrapper(HttpContext.Current);
MvcHandler mvcHandler = httpContextWrapper.CurrentHandler as MvcHandler;
RequestContext requestContext = mvcHandler.RequestContext;
UrlHelper urlHelper = new UrlHelper(requestContext);

HtmlHelper - this is a bit more tricky, because you need a ViewContext

If you are writing a IViewEngine/IView, you will have the ViewContext in IView.Render....no problem. Otherwise, you won't have a ViewContext. Does anyone know a way to get ViewVContext through HttpContext or some other mechanism without writing a view engine and custom view?

RazorEngine class does not have a way to specify custom ITemplate classes

Currently, internally, only TemplateBase and TemplateBase<> are supported. So you can create a derived class, but you can't do anything with it. This needs to be added as an overload to the API.

I am adding all of this to my source code update (including a sample view engine and custom view).

Once I create the branch, hopefully this will be included in the main source code.

Scott

from razorengine.

johnwebbcole avatar johnwebbcole commented on July 30, 2024

Scott, we are using the template base from http://www.haiders.net/post/HtmlTemplateBase.aspx in the V2 razorengine with an added url helper:

    public UrlHelper Url
    {
        get
        {
            if (urlhelper == null)
            {
                urlhelper = new UrlHelper(HttpContext.Current.Request.RequestContext);
            }
            return urlhelper;
        }
    }

from razorengine.

Antaris avatar Antaris commented on July 30, 2024

RazorEngine does support custom base template types, they are specified as part of the ITemplateServiceConfiguration type, namely DefaultTemplateServiceConfiguration, XmlTemplateServiceConfiguration, or FluentTemplateServiceConfiguration

from razorengine.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.