2

我只想知道 ASP.NET 中有多少种类型的 Http 处理程序可用?

4

1 回答 1

3

文章MSDN指出有四个 Http 处理程序。您甚至可以创建自己的自定义 Http 处理程序(在同一篇文章中提到)

1) ASP.NET page handler (*.aspx)
2) Web service handler (*.asmx)
3) Generic Web handler (*.ashx)
4) Trace handler (trace.axd)

换一种理解,Http handler有两种

1) Asynchronous
2) Synchronous
//mentioned in the same article
于 2012-12-05T05:50:08.350 回答