ASP.NET 应用程序中的 .ashx 文件是什么?
什么时候在 ASP.NET Web 应用程序中使用 ashx 文件?有人可以用简单的术语和实际的例子来解释吗?我从 msdn 了解到 .ashx 文件实现了 ihttphandler,但我无法从这里得到太多解释 http://msdn.microsoft.com/en-us/library/system.web.ihttphandler.aspx,有人能为我解释清楚吗?
When do you use ashx files in asp.net web application ? Can some one explain in simple terminology with a pratical example ? I understood from the msdn that .ashx files implements ihttphandler but i could not get much explanation from here http://msdn.microsoft.com/en-us/library/system.web.ihttphandler.aspx, Can some one explain it clearly for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简而言之,ASHX 文件是一个 ASPX 文件,减去所有管道 ASP.NET Web 表单。
我正在使用 ASHX 即时生成 PDF 文件并下载它们。
同样,我使用它们动态生成缩略图并下载它们。
这对于空白 ASPX 可以很好地工作,但 ASHX 文件消耗的资源要少得多。
请查看本教程了解文件 ashx.
In short, a file ASHX is an ASPX file, minus all plumbing ASP.NET webform.
I am using ASHX to generate PDF files on the fly, and download them.
Similarly, I use them to generate thumbnails on the fly and download them.
This could work very well with a blank ASPX, but ASHX files are much less resource-consuming.
Take a look at this tutorial to see how the files ashx.
我使用它们的一种用途是用它来处理 AJAX 请求,并以纯文本格式打印输出。不需要渲染任何 HTML 控件等,只需纯文本/XML 等,ASHX 似乎最适合这一点。
这是一个很好的概述:
http://www.dotnetperls.com/ashx
One use I use them for is to use it to handle AJAX requests, and print the output in plaintext format. There is no need to render any HTML controls etc, just plain text/XML etc, and ASHX seems best for that.
Here is a good overview:
http://www.dotnetperls.com/ashx