从 asp.net 中的 Web 服务返回 html
无论如何,有没有办法从 C# 中的 Web 服务返回 HTML?如果我的 XSLT 转换输出标记为 XML,那么我将
<?xml version="1.0" encoding="UTF-8"?>
在返回页面的顶部获取 XML 标记。下面是我的 HTML,这很好,但我真正想做的是将我的 XSLT 转换输出标记更改为 HTML,并让 Web 服务仅返回 HTML 代码。这可能吗?
Is there anyway to return HTML from a web service in C#? If I have my XSLT transform output tag as XML then I'm geting the XML tag
<?xml version="1.0" encoding="UTF-8"?>
at the top of the returned page. Under that is my HTML and that's fine but what I'd really like to do is change my XSLT transform output tag to HTML and have the web service return just the HTML code. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设 Javascript 正在调用您的 Web 服务以实现某种 AJAX-y 客户端包含。
这是一个坏主意
您想要做的是将数据返回到客户端 JavaScript 并使用 DOM 操作(即 JQuery 或 ASP.NET AJAX)将数据插入到您的页面中。不要尝试从 Web 服务返回原始 HTML;这不是网络服务的重点!如果您需要 HTML,请使用 ASPX 页面返回 HTML。如果您使用服务器端 XML 转换来构建 HTML,请使用包含自定义服务器控件的 ASPX 页面,该控件将 XML 转换为 HTML。
I assume your web service is being called by Javascript for some sort of AJAX-y client-side inclusion.
THIS IS A BAD IDEA
What you want to do is return data to your client-side javascript and use DOM manipulation (i.e. JQuery or ASP.NET AJAX) to insert the data into your page. Do not try to return raw HTML from a web service; that's not the point of a web service! If you need HTML, use an ASPX page to return HTML. If you're using server-side XML transformations to build your HTML, use an ASPX page containing a custom server control that emits the XML transformed into HTML.
我可能没有正确理解你的问题,但这不是像创建一个返回包含 HTML 的字符串值的 Web 方法那么简单吗?
I may not have understood your question correctly but would this not be as simple as creating a web method which returns a string value that would contain the HTML?