Have you ever seen a .aspx URL extension in your browser’s address bar? Something like https://xyz.com/form.aspx, if yes, that indicates you are on an .aspx page ...
I tried to parse the HTML and get all links from there. The only thing what gave me back some result was: from bs4 import BeautifulSoup as soup # HTML data structure from urllib.request import urlopen ...