luis
luis

Reputation: 21

C# dynamically change iframe using post method

I'm a newbie to iframe.
I have a page that needs to call an iframe at another subdomain passing lots of data.
I'm wondering if it's possible to submit the iframe call using a POST instead of GET. Thanks in advance

Upvotes: 2

Views: 863

Answers (1)

Doobi
Doobi

Reputation: 4822

The short answer I'm afraid is no. You can pass plenty of data in the querystring to the iFrame, but HTML doesn't support the semantics to POST to an iFrame.

Upvotes: 1

Related Questions