I’m not sure if this is possible, or if there’s a simpler way of achieving my needs…
I have a login form that used to post back to our legacy system.
I have used jQuery to intercept this and post the form data back into the partially migrated system running on ASP.Net MVC – I now need to forward this call back to the legacy system with the original form data.
I have tried the following:
[AcceptVerbs(HttpVerbs.Post)]
public void V6Login(FormCollection formData)
{
Server.Transfer("/bin/ussI.dll/do?cmd=Login", true);
}
but I get the following error:
No http handler was found for request type ‘POST’
You need to ensure that you have an HTTP handler for the
ussI.dlldefined in your config for ASP.NET to know about it.