download an .asp page?

Blitz3D Forums/Blitz3D Programming/download an .asp page?

vivaigiochi(Posted 2011) [#1]
How can obtain the html generated from an .asp page?
I can download an html page ...i will solve many problem if i can do this..


tyoud(Posted 2011) [#2]
Assuming the .asp page is served by a normal web server ... could you retrieve it like any html page?

Here are some code examples that might work:

Mark Sibly's example code
http://www.blitzbasic.com/codearcs/codearcs.php?code=21

interesting code, an alternative to Mark Sibly's
http://www.blitzbasic.com/codearcs/codearcs.php?code=24

another good short example:
http://www.blitzbasic.com/codearcs/codearcs.php?code=1023

more of a web browser type of example:
http://www.blitzbasic.com/codearcs/codearcs.php?code=1502

Anyway, they all show slightly different approaches, they are under the Code Archives, under Networking. Many interesting snippets of code are up there to ponder.

Do you think that one of these approaches might fit what you're trying to do, or is it a slightly different kind of problem?