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
For folks that have programmed in nodeJs before, particularly using expressJS. I think of .ashx as a middleware that calls the next function. While .aspx will be the controller that actually responds to the request either around res.redirect, res.send or whatever.