C # dynamically change iframe using post method

I am new to iframe.
I have a page that needs to call an iframe in another subarea passing a lot of data.
I am wondering if it is possible to send an iframe request using POST instead of GET. thanks in advance

+2


a source to share


1 answer


The short answer I'm afraid of is no. You can pass a large amount of data in the querystring for an iFrame, but HTML does not support POST semantics for an iFrame.



+1


a source







All Articles