ASP.NET MVC - 渲染和发送输出思想Web服务
有谁知道解析 .cshtml 布局文件并将输出呈现为 web 服务中的字符串的方法吗?有什么建议吗?
在 ASP.NET C# 中是这样的 XhtmlTextWriter xhtmltextwriter = new XhtmlTextWriter(stringwriter);
// Create a new Page and add the control to it.
using (Page page = new Page())
{
foreach (Control item in controls)
{
page.Controls.Add(item);
}
HttpContext.Current.Server.Execute(page, xhtmltextwriter, false);
}
谢谢, 吉姆
Does anyone knows the way to parse .cshtml layout file and render output as string in webservice? Any tips ?
In ASP.NET C# something like this
XhtmlTextWriter xhtmltextwriter = new XhtmlTextWriter(stringwriter);
// Create a new Page and add the control to it.
using (Page page = new Page())
{
foreach (Control item in controls)
{
page.Controls.Add(item);
}
HttpContext.Current.Server.Execute(page, xhtmltextwriter, false);
}
Thanks,
Jim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看最新的 Phil Haack 博客文章 这里。他解释了如何使用 Razor 引擎解析 *.cshtml 文件。从这里你可以在任何地方使用它,fe。通过网络服务发送。
You can check newest Phil Haack's blog post here. He explains how to use Razor engine to parse *.cshtml files. From this you can use it everywhere, fe. send it through web service.
您绝对可以在 Web 服务中托管 Razor 引擎。我在这里写了一篇关于它的博客文章:http://anur.se/razorhost。如果您想要更简单的东西,我建议使用 Razor Engine,它抽象了复杂的东西并提供简单的外观,例如 Razor.Parse(template, model)。
You can definitely host the Razor engine in a Web Service. I wrote a blog post about it here: http://anur.se/razorhost. If you want something simpler, I'd suggest using Razor Engine, which abstracts away the complex stuff and provides simple facades like
Razor.Parse(template, model)
.