Last post May 14, 2019 02:15 AM by Wei Zhang
Member
31 Points
39 Posts
May 13, 2019 10:47 PM|mohammad rabiyi|LINK
in web.config file and system.webServer tag we can handlers path; what is default dot net handlers type?
<system.webServer>
<handlers>
<add name="TextCreatorUrlRewriteAccessHandler" verb="*" path="*" type="??????"/>
</handlers>
</system.webServer>
Participant
1300 Points
522 Posts
May 14, 2019 02:15 AM|Wei Zhang|LINK
Hi mohammad rabiyi,
According to your description, in .net webform, webform 's default httphandler is Page , which implements IHttpHandler. You could see as below:
Else for .net MVC , mvc's default handler is MvcHanler which implements IHttpHandler.
Best Regards
Wei
Member
31 Points
39 Posts
what is default handlers type?
May 13, 2019 10:47 PM|mohammad rabiyi|LINK
in web.config file and system.webServer tag we can handlers path; what is default dot net handlers type?
<system.webServer>
<handlers>
<add name="TextCreatorUrlRewriteAccessHandler" verb="*" path="*" type="??????"/>
</handlers>
</system.webServer>
Participant
1300 Points
522 Posts
Re: what is default handlers type?
May 14, 2019 02:15 AM|Wei Zhang|LINK
Hi mohammad rabiyi,
According to your description, in .net webform, webform 's default httphandler is Page , which implements IHttpHandler. You could see as below:
Else for .net MVC , mvc's default handler is MvcHanler which implements IHttpHandler.
Best Regards
Wei