Request.asp Sample Script

This script creates the page for the end user to enter a question.

<!-------------------------------------------------------------------

Microsoft English Query

Copyright 1998 Microsoft Corporation. All Rights Reserved.

Component: Sample Scripts

File: Request.asp

Request Page

-------------------------------------------------------------------->

<HTML>

<BASEFONT FACE="Arial">

    <HEAD>

        <TITLE>English Query Request</TITLE>

    </HEAD>

    <BODY TEXT="#000000" BGCOLOR="#FFFFFF">

        <FORM ACTION="response.asp" METHOD=GET>

            <B>Enter your question as an English sentence:</B><BR>

            <BR>

            <INPUT TYPE=TEXT NAME=reqQuestTyped SIZE=100 MAXLENGTH=256><BR>

            <BR>

            <INPUT TYPE=SUBMIT VALUE=Submit>

            <INPUT TYPE=RESET VALUE=Reset>

        </FORM>

    </BODY>

</BASEFONT>

</HTML>


(c) 1996-1998 Microsoft Corporation. All Rights Reserved.