I have a web page were I upload a file from my PC (hope to convert to a dat file) and the web site validate the file and goes to the next page where the URL has an ID on the end of it. If I click on the submit button without the correct ID I will receive a 500 error. The application is using REST APIs.
Example:
This URL is the one I use to upload my file.
https://(URL/#/upload
After I select my file from my PC, the page is refreshed with the below url, and the values after the review/ is what i need to capture. That value is the ID of the file uploaded.
Https:// (URL)/#/review/1cd55bc4-3114-4687-904a-53b0ac3db46c
When I look at the view source of the page all I see is below:
<!DOCTYPE html><html lang=en class=no-js ng-app=upload-ui ng-strict-di><head><meta charset=utf-8><meta name=description content=""><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><meta http-equiv=cache-control content="no-store, no-cache, must-revalidate"><meta http-equiv=Pragma content="no-store, no-cache"><meta http-equiv=Expires content="0"><base href="/gateway/upload/"><title>Data Submission</title><link rel=stylesheet href="styles/bootstrap.min.css"><link rel=stylesheet href="styles/leaflet.css"><link rel=stylesheet href=styles/html5-boilerplate-normalize.css><link rel=stylesheet href=styles/html5-boilerplate-main.css><link href=styles/main.css media=all rel=stylesheet type="text/css"><link href=styles/message.css media=all rel=stylesheet type="text/css"><link href=styles/upload.css media=all rel=stylesheet type="text/css"><link href=styles/submission.css media=all rel=stylesheet type="text/css"><link href=styles/confirm.css media=all rel=stylesheet type="text/css"><link href=styles/print.css media=print rel=stylesheet type="text/css"><body ng-controller=AppCtrl><nav-bar></nav-bar><message-center></message-center><div class=page><div><h1>Data Submission <span class="capitalize offscreen">{{pageName()}}</span></h1><workflow-links></workflow-links><div ng-view></div></div></div><div class=footer><p>Data Submission| {{date | date:'M/d/yyyy h:mma'}}</p></div><script src=bundle.min.js></script>
Any Assistance is greatly appreciated!!
Larry