vote up 16 vote down star
20

Hi all!

I'm wanting to output two different views (one as a string that will be sent as an email), and the other the page displayed to a user.

Is this possible in ASP.NET MVC beta?

I've tried multiple examples:

RenderPartial to String in ASP.NET MVC Beta
If I use this example, I receive the "Cannot redirect after HTTP headers have been sent.".

MVC Framework: Capturing the output of a view
If I use this, I seem to be unable to do a redirectToAction, as it tries to render a view that may not exist. If I do return the view, it is completely messed up and doesn't look right at all.

Does anyone have any ideas/solutions to these issues i have, or have any suggestions for better ones?

Many thanks!

Below is an example. What I'm trying to do is create the GetViewForEmail method:

public ActionResult OrderResult(string ref)
{
  //Get the order
  Order order = OrderService.GetOrder(ref);

  //The email helper would do the meat and veg by getting the view as a string
  //Pass the control name (OrderResultEmail) and the model (order)
  string emailView = GetViewForEmail("OrderResultEmail", order);

  //Email the order out
  EmailHelper(order, emailView);
  return View("OrderResult", order);
}

Accepted answer from Tim Scott (changed and formatted a little by me):

public virtual string RenderViewToString(
  ControllerContext controllerContext,
  string viewPath,
  string masterPath,
  ViewDataDictionary viewData,
  TempDataDictionary tempData)
{
  Stream filter = null;
  ViewPage viewPage = new ViewPage();

  //Right, create our view
  viewPage.ViewContext = new ViewContext(controllerContext, new WebFormView(viewPath, masterPath), viewData, tempData);

  //Get the response context, flush it and get the response filter.
  var response = viewPage.ViewContext.HttpContext.Response;
  response.Flush();
  var oldFilter = response.Filter;

  try
  {
      //Put a new filter into the response
      filter = new MemoryStream();
      response.Filter = filter;

      //Now render the view into the memorystream and flush the response
      viewPage.ViewContext.View.Render(viewPage.ViewContext, viewPage.ViewContext.HttpContext.Response.Output);
      response.Flush();

      //Now read the rendered view.
      filter.Position = 0;
      var reader = new StreamReader(filter, response.ContentEncoding);
      return reader.ReadToEnd();
  }
  finally
  {
      //Clean up.
      if (filter != null)
      {
        filter.Dispose();
      }

      //Now replace the response filter
      response.Filter = oldFilter;
  }
}

Example usage

Assuming a call from the controller to get the order confirmation email, passing the Site.Master location.

string myString = RenderViewToString(this.ControllerContext, "~/Views/Order/OrderResultEmail.aspx", "~/Views/Shared/Site.Master", this.ViewData, this.TempData);
flag
Can you add the way you are calling the RenderViewToString method. Thanks – Jedi Master Spooky Feb 11 at 16:20
Sure! I have updated the solution. – Dan Atkinson Feb 11 at 16:36
How can you use this with a view, that is strongly typed? Ie. how can I feed a model to the page? – Kjensen Jun 11 at 12:07
Can't use this and create JsonResult afterwards, because content type cannot be set after headers have been sent (because Flush sends them). – Arnis L. Nov 17 at 13:16

9 Answers

vote up 9 vote down check

This works for me:

public virtual string RenderView(ViewContext viewContext)
{
    var response = viewContext.HttpContext.Response;
    response.Flush();
    var oldFilter = response.Filter;
    Stream filter = null;
    try
    {
        filter = new MemoryStream();
        response.Filter = filter;
        viewContext.View.Render(viewContext, viewContext.HttpContext.Response.Output);
        response.Flush();
        filter.Position = 0;
        var reader = new StreamReader(filter, response.ContentEncoding);
        return reader.ReadToEnd();
    }
    finally
    {
        if (filter != null)
        {
            filter.Dispose();
        }
        response.Filter = oldFilter;
    }
}
link|flag
Thanks for your comment, but isn't that used for rendering inside a view though? How could I use it in the context I have updated the question with? – Dan Atkinson Jan 27 at 21:44
Actually, no. I'm an idiot! I forgot these two lines would come in handy: ViewPage vp = new ViewPage(); vp.ViewContext = new ViewContext(controllerContext, new WebFormView("~/Views/Orders/OrderResultEmail.aspx", ""), ViewData, null); Many thanks Tim! – Dan Atkinson Jan 27 at 23:13
Does this work with rc0? – Nath Jan 29 at 17:03
If you mean RC1, I haven't tried it yet, but you're more than welcome to try... :) – Dan Atkinson Jan 29 at 20:51
Sorry, still thinking about Silverlight last year whose first rc was 0. :) I'm giving this a shot today. (As soon as I work out the correct format of the view path) – Nath Jan 30 at 8:57
show 3 more comments
vote up 3 vote down

I found a new solution that renders a view to string without having to mess with the Response stream of the current HttpContext (which doesn't allow you to change the response's ContentType or other headers).

Basically, all you do is create a fake HttpContext for the view to render itself:

/// <summary>Renders a view to string.</summary>
public static string RenderViewToString(this Controller controller,
                                        string viewName, object viewData) {
    //Create memory writer
    var sb = new StringBuilder();
    var memWriter = new StringWriter(sb);

    //Create fake http context to render the view
    var fakeResponse = new HttpResponse(memWriter);
    var fakeContext = new HttpContext(HttpContext.Current.Request, fakeResponse);
    var fakeControllerContext = new ControllerContext(
        new HttpContextWrapper(fakeContext),
        controller.ControllerContext.RouteData,
        controller.ControllerContext.Controller);

    var oldContext = HttpContext.Current;
    HttpContext.Current = fakeContext;

    //Use HtmlHelper to render partial view to fake context
    var html = new HtmlHelper(new ViewContext(fakeControllerContext,
        new FakeView(), new ViewDataDictionary(), new TempDataDictionary()),
        new ViewPage());
    html.RenderPartial(viewName, viewData);

    //Restore context
    HttpContext.Current = oldContext;    

    //Flush memory and return output
    memWriter.Flush();
    return sb.ToString();
}

/// <summary>Fake IView implementation used to instantiate an HtmlHelper.</summary>
public class FakeView : IView {
    #region IView Members

    public void Render(ViewContext viewContext, System.IO.TextWriter writer) {
    	throw new NotImplementedException();
    }

    #endregion
}

This works on ASP.NET MVC 1.0, together with ContentResult, JsonResult, etc. (changing Headers on the original HttpResponse doesn't throw the "Server cannot set content type after HTTP headers have been sent" exception).

link|flag
There is no RenderPartial method on the HtmlHelper object. This is not possible - html.RenderPartial(viewName, viewData); – MartinF Aug 8 at 12:53
In ASP.NET MVC release 1.0 there are a couple of RenderPartial extension methods. The one I'm using in particular is System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(this HtmlHelper, string, object). I'm unaware whether the method has been added in the latest revisions of MVC and wasn't present in earlier ones. – Lck Aug 8 at 17:42
Thanks. Just needed to add the System.Web.Mvc.Html namespace to the using declaration (else html.RenderPartial(..) of course wont be accessible :)) – MartinF Aug 9 at 11:28
vote up 1 vote down

I am using MVC 1.0 RTM and none of the above solutions worked for me. But this one did:

Public Function RenderView(ByVal viewContext As ViewContext) As String

    Dim html As String = ""

    Dim response As HttpResponse = HttpContext.Current.Response

    Using tempWriter As New System.IO.StringWriter()

        Dim privateMethod As MethodInfo = response.GetType().GetMethod("SwitchWriter", BindingFlags.NonPublic Or BindingFlags.Instance)

        Dim currentWriter As Object = privateMethod.Invoke(response, BindingFlags.NonPublic Or BindingFlags.Instance Or BindingFlags.InvokeMethod, Nothing, New Object() {tempWriter}, Nothing)

        Try
            viewContext.View.Render(viewContext, Nothing)
            html = tempWriter.ToString()
        Finally
            privateMethod.Invoke(response, BindingFlags.NonPublic Or BindingFlags.Instance Or BindingFlags.InvokeMethod, Nothing, New Object() {currentWriter}, Nothing)
        End Try

    End Using

    Return html

End Function
link|flag
Well, I'm going to say the obvious, but all of the above are C# solutions, and yours is in VB. :) – Dan Atkinson Jul 16 at 13:05
vote up 0 vote down

Do i understand correct if you want to do something like this: When the user does something he should get an email and a text on the screen?

Then why don't the model send the email? Why would you need the email to be sent to a view?

link|flag
Richard, I'm getting the email from the view because the view is made up of collection of the same partials as the one that's on the screen, and I'd rather not duplicate two sets of HTML. – Dan Atkinson Jan 27 at 12:12
vote up 0 vote down

I would create a new View class deriving from the original view and overriding the ouput method.

link|flag
Do you know of any examples of this? – Dan Atkinson Jan 27 at 12:27
Haven't done anything like it in MVC. It's just a basic idea of how this could be solved. – Drejc Jan 27 at 14:14
Thanks. I've looked for something more specific on this, but haven't found anything that could possibly be near a solution. – Dan Atkinson Jan 27 at 14:18
vote up 0 vote down

Thanks for the blog, got me a bit further, though I'm not sure if I missed something or if the rc 2 of ASP.NET MVC just handle things differently. I couldn't get your sample to work and I was stuck last night at 5 in the morning with a lot of email handling code that depended on this to work. I got the 'can't redirect after headers have been sent' error over and over again no matter what i tried. I didn't feel like rewriting too much code, so I thought a hack might be better than nothing.

Here's my code if anyone can make use of it. It's not very pretty, but at least it works until the MVC team realeases a new version with an EmailResult or whatever they come up with.

If you experience encoding problems with the output, try saving your view .aspx files as 'Unicode UTF-8 with signature'. Worked for me.

I still can't figure out how to avoid using the Current HttpContext, I've looked into Phil Haacked's unit testing code and 3-4 other promising ideas but with no luck. I get an empty string as the output if I don't reference the Current context.

Jacob Frost, Copenhagen

    public static void SendView(IEnumerable<User> recipients, string viewName, string masterName, object viewData)
    {
        string viewPath = viewName.IndexOfAny(new char[] { '~', '/' }) > -1 ? viewName : string.Format("~/Views/Mail/{0}.aspx", viewName);
        string masterPath = null;
        if (masterName != null)
        {
            masterPath = masterName.IndexOfAny(new char[] { '~', '/' }) > -1 ? masterName : string.Format("~/Views/Mail/{0}.Master", masterName);
        }

            var httpStream = new MemoryStream();
            var httpWriter = new StreamWriter(httpStream, Encoding.Unicode);

            var viewPage = new ViewPage();

            var response = HttpContext.Current.Response;
            response.ContentEncoding = Encoding.Unicode;

            viewPage.ViewContext = new ViewContext(
                new ControllerContext
                {
                    HttpContext = new HttpContextWrapper(
                        new HttpContext(HttpContext.Current.Request, response)
                    )
                },
                new WebFormView(viewPath, masterPath /* ignored if null */),
                new ViewDataDictionary(viewData /* ignored if null */),
                new TempDataDictionary()
            );


            // HACK: Inject custom TextWriter into the http response, then render, then put the response in it's original state and return
            var httpWriterField = response.GetType().GetField("_httpWriter", BindingFlags.NonPublic | BindingFlags.Instance);
            var privateHttpWriter = httpWriterField.GetValue(response);
            httpWriterField.SetValue(response, null);

            var writerField = response.GetType().GetField("_writer", BindingFlags.NonPublic | BindingFlags.Instance);
            writerField.SetValue(response, httpWriter);

            viewPage.ViewContext.View.Render(viewPage.ViewContext, null /* ignored by asp.net framework &@#*!@!# */);

            httpWriterField.SetValue(response, privateHttpWriter);
            writerField.SetValue(response, privateHttpWriter);


            string output = Encoding.Unicode.GetString(httpStream.ToArray());

            // Now you have the view output as a string, and headers have not been sent, so you can return a RedirectToAction in your calling code if you wish.


           // Send email as normally. Beware that you might get problems with sending asynchroneous as your controller or view needs an Async attribute for this. I wrote a custom threading solution, as I thought the attribute solution was too much to ask of the calling code.
link|flag
you forgot one tiny detail. httpWriter.Close() before the httpStream.ToArray() code. adding that means you can take out the hack and just do viewPage.ViewContext.View.Render(viewPage.ViewContext, httpWriter); ASP.NET isnt ignoring anything. this fix makes this about the cleanest way to do this WITHOUT needing a controller instance – Simon Oct 22 at 23:25
vote up 0 vote down

I met the same problem with creating report. After trying all above solution, I met some exception related to the HTTP header. It does not allow me to redirect to action or return any ActionResult later.

However, I found another way to solve. Please go to this article on my blog: http://trandangkhoa.blogspot.com/2009/05/asp-net-mvc-print-excel-file-using-aspx.html

The idea is very simple: using HttpClient to get HTML content from the view:

link|flag
vote up 0 vote down

Quick tip

For a strongly typed Model just add it to the ViewData.Model property before passing to RenderViewToString. e.g

this.ViewData.Model = new OrderResultEmailViewModel(order);
string myString = RenderViewToString(this.ControllerContext, "~/Views/Order/OrderResultEmail.aspx", "~/Views/Shared/Site.Master", this.ViewData, this.TempData);
link|flag
vote up -2 vote down

Hi, I have a similar problem but a little different. I am trying to call a MVC route from a non-MVC page (a webform page). Yes, we are slowly transitioning into MVC so we are in Mixed Mode. Now, my controller's action needs to return the HTML that is actually in the partial view + the model data, so that my non-MVC page can consume it. I know I can "build" an HTML string in the controller but that violates MVC principles.

Let me know if there is a way. Moreover I wanted to find out from one of the MS guys if there was even a usecase like that for them. They encourage and support Mixed Mode with webforms and MVC pages in a ASP.NET web application.

Thanks in advance.

link|flag
1  
You might be better off asking this as a separate question. – Dan Atkinson Jul 28 at 16:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.