tags:

views:

25

answers:

1

Hi,

I need to direct user to Paypal site for payment . Is there a way to achieve this from the controller with out the paypal site opening in a new browser?.

Right now I am using Process.Start(url) but would like to find out a better way to d o this preferably with our AJAX and in the same way Return view() behaves.

Thanks in advance.

+2  A: 

Does this help?

return Redirect("http://paypal.com")
orip
This is how I would do it.
thekaido
Great thanks a bunch
fireBand