Git Product home page Git Product logo

Comments (5)

powercat97 avatar powercat97 commented on June 28, 2024

I found a solution to this issue. I use a non-template .cshtml view as a wrapper around the template. This allows it to have the context's set.

In the controller, there are two functions. One that returns the wrapper view, and a second called by the wrapper to actually compile the template with RazorEngine.

public ActionResult Edit(int id)
{   
   :
   // Create VM and such
   :
   return PartialView(vm);
}

[ChildActionOnly()]
public string EditTemplate(MyViewModel vm)
{
    return RazorEngine.Razor.Parse(this.MyTemplate, vm, "MyTemplateName");
}

Then, the View "wrapper" (Edit.cshtml) is;

@model MyNamespace.MyViewModel
@{ Html.RenderAction("EditTemplate", new { vm = Model }); }

Hope this helps.

from razorengine.

rboarman avatar rboarman commented on June 28, 2024

This work-around fixed my issue even though it is a hack. Any idea if this is an issue that can be fixed?

Rick

from razorengine.

antscode avatar antscode commented on June 28, 2024

I spent a few hours on this today. WebPageContext.Current is only available within a Razor view, hence your template rendering needs to occur within a view if you want to access Html helpers & ViewData.

I tried with no success to create a new instance of a WebPageContext from code outside of a Razor View.

This is why the above solution works - however it can be simplified. You do not need to call Html.RenderAction from within the View - you can just parse your template from within the View directly.

Cheers,
Anthony.

from razorengine.

rboarman avatar rboarman commented on June 28, 2024

Thanks!

from razorengine.

matthid avatar matthid commented on June 28, 2024

Is this really a bug within RazorEngine? It seems like the ASP.NET MVC API is just not designed to be used this way so there just is no easy way to provide this with RazorEngine.
Please re-open if I'm missing something here.

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.