Oggetto risposta ASP


L'oggetto ASP Response viene utilizzato per inviare l'output all'utente dal server.


Altri esempi


Come scrivere testo con ASP.


Come combinare testo e tag HTML con ASP.


Come reindirizzare l'utente a un URL diverso.


Come creare un collegamento casuale.


Come controllare il buffer.


Come cancellare il buffer.


Come terminare uno script durante l'elaborazione.


Come specificare quanti minuti una pagina verrà memorizzata nella cache in un browser prima della scadenza.


Come specificare una data/ora di scadenza di una pagina memorizzata nella cache di un browser.


Come verificare se un utente è disconnesso dal server.


Come specificare il tipo di contenuto.


Come specificare il nome del set di caratteri.



Oggetto di risposta

L'oggetto ASP Response viene utilizzato per inviare l'output all'utente dal server. Le sue raccolte, proprietà e metodi sono descritti di seguito:

Collezioni

Collection Description
Cookies Sets a cookie value. If the cookie does not exist, it will be created, and take the value that is specified

Proprietà

Property Description
Buffer Specifies whether to buffer the page output or not
CacheControl Sets whether a proxy server can cache the output generated by ASP or not
Charset Appends the name of a character-set to the content-type header in the Response object
ContentType Sets the HTTP content type for the Response object
Expires Sets how long (in minutes) a page will be cached on a browser before it expires
ExpiresAbsolute Sets a date and time when a page cached on a browser will expire
IsClientConnected Indicates if the client has disconnected from the server
Pics Appends a value to the PICS label response header
Status Specifies the value of the status line returned by the server

Metodi

Method Description
AddHeader Adds a new HTTP header and a value to the HTTP response
AppendToLog Adds a string to the end of the server log entry
BinaryWrite Writes data directly to the output without any character conversion
Clear Clears any buffered HTML output
End Stops processing a script, and returns the current result
Flush Sends buffered HTML output immediately
Redirect Redirects the user to a different URL
Write Writes a specified string to the output