Quero gerar duas visualizações diferentes (uma como uma sequência que será enviada como um email) e a outra a página exibida para um usuário.
Isso é possível no ASP.NET MVC beta?
Eu tentei vários exemplos:
1. RenderPartial to String no ASP.NET MVC Beta
Se eu usar este exemplo, recebo a mensagem "Não é possível redirecionar após o envio dos cabeçalhos HTTP".
2. MVC Framework: Capturando a Saída de uma Visualização
Se eu usar isso, parece que não consigo fazer um redirectToAction, pois ele tenta renderizar uma exibição que pode não existir. Se eu retornar a exibição, ela estará completamente bagunçada e não parecerá correta.
Alguém tem alguma idéia / solução para esses problemas que tenho, ou tem alguma sugestão para outras melhores?
Muito Obrigado!
Abaixo está um exemplo. O que estou tentando fazer é criar o método GetViewForEmail :
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);
}
Resposta aceita de Tim Scott (alterada e formatada um pouco por mim):
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;
}
}
Exemplo de uso
Supondo uma chamada do controlador para obter o email de confirmação do pedido, passando o local Site.Master.
string myString = RenderViewToString(this.ControllerContext, "~/Views/Order/OrderResultEmail.aspx", "~/Views/Shared/Site.Master", this.ViewData, this.TempData);