The Write method writes a specified string to the current HTTP output.
Response.Write variant
variant
The data to write. This parameter can be any data type supported by the Visual Basic® Scripting Edition VARIANT data type, including characters, strings, and integers. This value cannot contain the character combination “%>“; instead you should use the escape sequence “%\>“. The Web server will translate the escape sequence when it processes the script.
If Visual Basic® Scripting Edition (VBScript) is your primary scripting language, variant cannot be a string literal that contains more than 1022 characters. This is because VBScript limits static strings to 1022 bytes. You can, however, specify variant as the name of a variable that contains greater than 1022 bytes.
For example, the following VBScript, in which ‘a’ is repeated 1023 times in the string literal, will fail.
<% Response.Write "aaaaaaaaaaaa...aaaaaaaaaaaaaaaaaa"
But the following Visual Basic script will succeed:
<% AVeryLongString = String(4096, "a") Response.Write(AVeryLongString) %>
The following examples use the Response.Write method to send output to the client.
I just want to say <% Response.Write "Hello World." %>
Your name is: <% Response.Write Request.Form("name") %>
The following example adds an HTML tag to the Web page output. Because the string returned by the Write method cannot contain the character combination, “%>“, the escape, “%\>“, has been used instead. The following script;
<% Response.Write "<TABLE WIDTH = 100%\>" %>
Produces the output:
<TABLE WIDTH = 100%>
© Microsoft Corporation. All rights reserved.
See also:
| file: /Techref/language/asp/obj/introbj_29.htm, 2KB, , updated: 1996/11/21 19:01, local time: 2012/5/22 21:56,
38.107.179.232:LOG IN |
| ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.ecomorder.com/techref/language/asp/obj/introbj_29.htm"> Write</A> |
| Did you find what you needed? |
|
Ashley Roll has put together a really nice little unit here. Leave off the MAX232 and keep these handy for the few times you need true RS232! |
Robotics nuts!Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.