ASP.NET 应用程序中的 .ashx 文件是什么?

发布于 2024-11-03 02:12:41 字数 293 浏览 0 评论 0原文

什么时候在 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 技术交流群。

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

发布评论

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

评论(2

朦胧时间 2024-11-10 02:12:41

简而言之,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.

蓝眼睛不忧郁 2024-11-10 02:12:41

我使用它们的一种用途是用它来处理 AJAX 请求,并以纯文本格式打印输出。不需要渲染任何 HTML 控件等,只需纯文本/XML 等,ASHX 似乎最适合这一点。

这是一个很好的概述:

http://www.dotnetperls.com/ashx

您想要创建 ASP.NET 文件
这不是典型的 Web 表单页面。
您的文件需要动态
从查询字符串返回图像,
或 XML 和其他非 HTML 网页。

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

You want to create an ASP.NET file
that is not a typical web forms page.
Your file will need to dynamically
return an image from a query string,
or XML and other non-HTML web pages.

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