Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post May 03, 2012 04:14 AM by shriniwasshukla
Member
634 Points
210 Posts
May 01, 2012 05:25 AM|LINK
Hii All,
I want to use httphandler to process many web page request with a single httphandler as in forum or blogger site seen.
Please help me.
Thanks
All-Star
16460 Points
3178 Posts
May 01, 2012 05:37 AM|LINK
An httpHandler would process all requests for resources which it is configured against.
So for ex. it would process all requests to the resources in a particular folder
<httpHandlers > <add verb="*" path="users/*.aspx" type="MyHandler.UrlHandler,MyHandler" /> </httpHandlers>
97849 Points
14494 Posts
May 01, 2012 05:56 AM|LINK
Read through these -
http://msdn.microsoft.com/en-us/library/aa903367(v=vs.71).aspx
http://msdn.microsoft.com/en-us/library/bb398986.aspx
http://msdn.microsoft.com/en-us/library/5c67a8bd(v=vs.71).aspx
Thanks,
May 01, 2012 07:45 AM|LINK
Thanks All, I want to use HttpHandler to genrate web pages as per rerquest comes.
I also want to use masterpage in my HttpHandler.
httphandler
May 01, 2012 08:53 AM|LINK
This is how you generate Dynamic content using httpHandlers(URL routing)
http://msdn.microsoft.com/en-us/library/ms972953.aspx
Basically you have a masterpage and a childpage, you pump in some data as per request and do the url routing part and you have a dynamically generated page
May 03, 2012 04:14 AM|LINK
Thanks Saurabh.
shriniwasshu...
Member
634 Points
210 Posts
How to make many request from single httphandler in asp.net
May 01, 2012 05:25 AM|LINK
Hii All,
I want to use httphandler to process many web page request with a single httphandler as in forum or blogger site seen.
Please help me.
Thanks
nijhawan.sau...
All-Star
16460 Points
3178 Posts
Re: How to make many request from single httphandler in asp.net
May 01, 2012 05:37 AM|LINK
An httpHandler would process all requests for resources which it is configured against.
So for ex. it would process all requests to the resources in a particular folder
ramiramilu
All-Star
97849 Points
14494 Posts
Re: How to make many request from single httphandler in asp.net
May 01, 2012 05:56 AM|LINK
Read through these -
http://msdn.microsoft.com/en-us/library/aa903367(v=vs.71).aspx
http://msdn.microsoft.com/en-us/library/bb398986.aspx
http://msdn.microsoft.com/en-us/library/5c67a8bd(v=vs.71).aspx
Thanks,
JumpStart
shriniwasshu...
Member
634 Points
210 Posts
Re: How to make many request from single httphandler in asp.net
May 01, 2012 07:45 AM|LINK
Thanks All,
I want to use HttpHandler to genrate web pages as per rerquest comes.
I also want to use masterpage in my HttpHandler.
httphandler
nijhawan.sau...
All-Star
16460 Points
3178 Posts
Re: How to make many request from single httphandler in asp.net
May 01, 2012 08:53 AM|LINK
This is how you generate Dynamic content using httpHandlers(URL routing)
http://msdn.microsoft.com/en-us/library/ms972953.aspx
Basically you have a masterpage and a childpage, you pump in some data as per request and do the url routing part and you have a dynamically generated page
httphandler
shriniwasshu...
Member
634 Points
210 Posts
Re: How to make many request from single httphandler in asp.net
May 03, 2012 04:14 AM|LINK
Thanks Saurabh.