I'm trying to do a Server.Transfer from an ASP.NET ashx handler to a ASP.NET MVC 3 page.
I don't want to use Server.Redirect because I do not want the URL to change.
Is this possible?
I'm trying to do a Server.Transfer from an ASP.NET ashx handler to a ASP.NET MVC 3 page.
I don't want to use Server.Redirect because I do not want the URL to change.
Is this possible?
Copyright © 2021 Jogjafile Inc.
You may try the following in your generic HTTP handler:
Obviously this would only work if the Generic HTTP handler is part of the ASP.NET MVC application.
If it is not the same application an HTTP redirect is your only bet.