Saturday, February 23, 2013

Get in ASP

<!DOCTYPE html>
<html>
    <body>
        <form method="GET" action="get.asp">
            Name: <input type="text" name="name">
            <input type="submit" value="Save">
        </form>
    </body>
</html>

<%
    response.write("Your name is "& Request.QueryString("name"))
%>

No comments:

Post a Comment