Skip to main content
Dieses Thema wurde für Antworten geschlossen.
Beste Antwort von try67

Yes (if you've selected GET). It's not really an HTML file, more of an HTML request.

4 Antworten

try67
Community Expert
Community Expert
February 1, 2019

If you want to do it using a script read up on the submitForm method of the Document object. You can use its cSubmitAs parameter to send the data as an HTML file, and the bGet parameter to define whether it be sent using GET or POST.

Karl Heinz  Kremer
Community Expert
Community Expert
February 1, 2019

Take a look at the submit action, it allows you to specify in which format forms data is submitted. One option is to submit as HTML. In this case, you will have exactly the same behavior as with a web form.

Participant
February 1, 2019

when the data is export from the html format how it supposes to look like?

is it like something below?

http://www.domain.com/capturedata.aspx?fieldfirstname=john

try67
Community Expert
try67Community ExpertAntwort
Community Expert
February 1, 2019

Yes (if you've selected GET). It's not really an HTML file, more of an HTML request.