比如在global.asax中设置application start event之后
如何在aspx中使用这个函数?又比如使用http handerls时,已编好dll文件,在web.config中设置好
configuration>
  <system.web>
    <httpHandlers>
      <add verb="*" path="*"
      type="ProductsHandler,ProductsHandler" />
    </httpHandlers>
  </system.web>
</configuration>
如何在aspx中调用?谢谢