Skip to main content
This topic has been closed for replies.
Correct answer try67

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

2 replies

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.

rickygeekAuthor
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 ExpertCorrect answer
Community Expert
February 1, 2019

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