Click here to Skip to main content
15,902,275 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HTML
<pre lang="HTML"><head>
    <meta charset="utf-8" />
    <script>
    </script>
</head>
<body onload="script();">
    <label id="result"></label>

What I have tried:

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Posted
Updated 6-Dec-16 6:32am
v2

 
Share this answer
 
You can find the answer by checking out the acknowledge.html in the download zip folder of this article Beginner's Guide to HTML5 & CSS3 - Formidable Forms with HTML5[^]. Adapt it to your situation.
 
Share this answer
 
hello
if you want to get the parameter from url, you have to post the parameters in url like:

href = "DestinationPage.html?ID=" + ID;

and you can retrieve it in Deatination.html Like:

JavaScript
var _Path = window.location.search.substring(1);
var _Param = _Path.split("=");
var _ID = _Param[1];


so _ID is the parameter you can use it in your lable.
but be advised NOT to pass important value in url

best regards
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900