Response对象4

  •   2009-07-27/22:09
  • Response对象后跟输出对象,其语法见下面的演示代码。

    <html><head>
    <title>res4.asp</title>
    </head><body bgcolor="#FFFFFF">
    <%
    ' The response object can be used to write text a variety of ways
    ' depending on what style you personally prefer

    ' Various permutations of writing to the browser
    response.write "<form>"
    response.write "Hello, Joe<br>"

    who="Joe"
    response.write "Hello, " & who & "<br>"
    %>

    Hello, <%=who%><br>

    Which Book? <input type="TEXT" name="book" value="The Stand"><br>

    <%
    response.write "Which Book? <input type=""TEXT"" name=""book""
    value=""The Stand""><br>"
    %>

    <%
    response.write "Which Book? <input type='TEXT' name='book' value='The
    Stand'><br>"
    %>

    <%
    quote=chr(34)
    response.write "Which Book? <input type=" & quote & "TEXT" & quote
    & " name=" & quote & "book" & quote & " value=" & quote & "The Stand"
    & quote & "><br>"
    %>


    <%bookname="The Stand"%>
    Which Book? <input type="TEXT" name="book" value="<%=bookname%>"><br>

    <%
    response.write "Which Book? <input type=""TEXT"" name=""book""
    value=""" & bookname & """><br>"
    %>
    </form>
    </body></html> 

    评论 {{userinfo.comments}}

    {{money}}

    {{question.question}}

    A {{question.A}}
    B {{question.B}}
    C {{question.C}}
    D {{question.D}}
    提交

    驱动号 更多