<form action="Back-End+Script.asp" method="get"> <input name="submitted" id="submitted" value="1" type="hidden"> <label for="name">Your Full Name*: </label><br> <input name="name" id="name" maxlength="50" type="text"><br> <label for="email">Email Address*:</label><br> <input name="email" id="email" maxlength="50" type="text"><br> <label for="phone">Phone Number:</label><br> <input name="phone" id="phone" maxlength="15" type="text"><br> <label for="message">Message:</label><br> <textarea rows="10" cols="50" name="message" id="message"> </textarea> <input value="submit" type="submit"> </form>
"Back-End+Script.asp" -- it's not really named that, is it? I'd suspect that might be the problem as when it comes to URI's it's better to avoid non-word characters. Restrict yourself to a to z, A to Z, 0 to 9 and _ for filenames of anything you're going to call as code. That's the only thing I'm immediately seeing that could be an issue... apart from that, it's nice to see someone using label properly for a change, though it would be nice if you had a valid form structure with a FIELDSET around your fields since you NEED a block level child for FORM (No matter what the HTML 5-tards now say)
It seem that the error is in your action="your action file with url goes here". try changing or add the file with the location.