please dont rip this site

Write

The Write method writes a specified string to the current HTTP output.

Syntax

Response.Write variant

Parameters

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.

Remarks

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) 
%>
 

Examples

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%> 
 

Applies To

Response Object

See Also

BinaryWrite


© Microsoft Corporation. All rights reserved.


file: /Techref/language/asp/obj/introbj_29.htm, 2KB, , updated: 1996/11/21 19:01, local time: 2024/4/19 05:55,
TOP NEW HELP FIND: 
18.217.228.35:LOG IN

 ©2024 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?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://massmind.org/techref/language/asp/obj/introbj_29.htm"> Write</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .