.aspx vs .ashx MAIN difference

后端 未结 4 855
孤城傲影
孤城傲影 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 07:08

    .aspx is a rendered page. If you need a view, use an .aspx page. If all you need is backend functionality but will be staying on the same view, use an .ashx page.

提交回复
热议问题