哪位能不能解释一下ScriptResource.axd和ScriptManager之间的关系?解决方法

哪位能不能解释一下ScriptResource.axd和ScriptManager之间的关系?
哪位能不能解释一下ScriptResource.axd和ScriptManager之间的关系?

The   ASP.NET   AJAX   script   manager   injects   the   Microsoft   AJAX   library   and   other   scripts   via   a   made-to-measure   handler   named   ScriptResource.axd.

It   is   defined   as   follows:

<httpHandlers>
<add   verb= "GET,HEAD ",   path= "ScriptResource.axd "   validate= "false "   type= "System.Web.Handlers.ScriptResourceHandler,   System.Web.Extensions,   ... "   />
</httpHandlers>

搞不清上面这些话是什么意思。

------解决方案--------------------
ScriptResource.axd 是一个Handler的名字, 他将使System.Web.Handlers.ScriptResourceHandler来处理, 是2.0下用来输出程序集中的资源的一个方法