Generate http post request from controller

后端 未结 3 1288
抹茶落季
抹茶落季 2021-01-05 05:57

Forgive me if this is a stupid question. I am not very experienced with Web programming. I am implementing the payment component of my .net mvc application. The component in

3条回答
  •  萌比男神i
    2021-01-05 06:31

    It realy makes a difference if ASP.NET makes a request or the the client makes a request. If the documentation of the the provider says that you should use a form with the given action that has to be submited by the client browser then this might be necessary.

    In lots of cases the user (the client) posts some values to the provider, enters some data at the providers site and then gets redirected to your site again. You can not do this applicationflow on the serverside.

提交回复
热议问题