I am working on this project, where my Application need to connect to a third party application. My steps
- Create form to submit data.
- Get Form data in MY controller Action. Save mine required variables to database.
- Then send the data to Third Party Application.
Now the problem here is that, i need to send the data as Submit Form. The Third party app takes the values as
Request.form("FormVal")
I can make no changes
to the Third party Application.
So how do i send the Form data through my Controller action
to the Third Party application?
Also
return view("action", model); // the model is needed to be sent.
it works for the view in my own Application. However I need to send it to an external view(third party) with the model so they can get value as
Request.form("FormVal")
I see the Redirect
commands can go the external view but i cannot send the form Data
with it.