Reputation: 59
I am from Java background just started with asp.net mvc. I am wondering is there anything in ASP.NET that corresponds to servlet and anything matching request and response object.
Any link will be appreciated.
Regards,
Deepak
Upvotes: 2
Views: 5236
Reputation: 17367
From MSDN: http://msdn.microsoft.com/en-us/library/aa478987.aspx
there are two ways to replace servlet functionality in ASP.NET: using a codebehind for an ASP.NET page with no HTML, or creating an HttpHandler.
Upvotes: 3