Hi I am currently working with a form in html, passing form data from one html form to another. When displaying the data I am getting %20 in the place of every space. Is there a way to replace this?
My code in the receiving page is:
<script type = "text/javascript"> 
    document.write("Business Name:  ", BusinessName);<-- Variables that are passed through URL-->
    document.write("Business Type:  ", BusinessType);
    document.write("Business Purpose:  ", BusinessPurpose);
</script>
 
     
    