ASP.NET MVC - 渲染和发送输出思想Web服务

发布于 2024-11-27 19:41:42 字数 556 浏览 0 评论 0原文

有谁知道解析 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染柒℉ 2024-12-04 19:41:42

您可以查看最新的 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.

夢归不見 2024-12-04 19:41:42

您绝对可以在 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文