.aspx vs .ashx MAIN difference

后端 未结 4 858
孤城傲影
孤城傲影 2020-12-02 06:24

What are the differences between .aspx and .ashx pages? I use ashx now when I need to handle a request that was called from code and returned with a response, but I would l

4条回答
  •  死守一世寂寞
    2020-12-02 06:51

    .aspx uses a full lifecycle (Init, Load, PreRender) and can respond to button clicks etc.
    An .ashx has just a single ProcessRequest method.

提交回复
热议问题