Deepak
Deepak

Reputation: 59

Is there anything like java servlet in asp.net

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

Answers (1)

onof
onof

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

Related Questions