如何使asp.net页面以XML格式响应
我想让 asp.net
页面以 xml
格式响应。我不想使用 xmlWriter
类。 如何将响应类型的标头设置为 xml 格式?
I want to make asp.net
page to respond in xml
format. I don't want to xmlWriter
class.
How to set the the header for the response type as xml foramt ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Page_Load 内的代码隐藏中:
但这不是最佳实践。请考虑在页面指令中的 aspx 文件中使用:
您可以使用 此 RSS 教程。请记住将 asp.net 呈现的输出中的非法字符(如“&”)去掉ETC...
In your codebehind inside Page_Load:
But it is not best practice. Please consider using in you aspx file in Page directive:
You can start your implementation using example from this RSS tutorial. Remember to strip output rendered by asp.net out of illegal characters like '&' etc...
您必须使用 contenttype = "text/xml",您可以参考下面的链接
http:// www.w3schools.com/asp/prop_contenttype.asp
You would have to use contenttype = "text/xml", you can refer to below link
http://www.w3schools.com/asp/prop_contenttype.asp