The Response object is used to send information to the client.
Methods | Properties | Collections |
AddHeader | Buffer | Cookies |
AppendToLog | ContentType | |
BinaryWrite | Expires | |
Clear | ExpiresAbsolute | |
End | Status | |
Flush | | |
Redirect | | |
Write | | |
Response methods must occur before any HTML is written.
Incorrect
<html> <head> <title> </title> </head> <body> <% 'This will not work! Response.Redirect http://www.visualbuilder.com %> </body> </html> |
Correct
<% 'This will work! Response.Redirect http://www.visualbuilder.com %> <html> <head> <title> </title> </head> <body> </body> </html> |
Response.Write example
<html> <head> <title> </title> </head> <body> <% 'This will display text Response.Write "text that you want to write on the page" %> </body> </html> |
Asp Discussion
- - How to upload files
- - Offshore outsourcing comp
- - Example of editing in Dat
- - Example of Inserting and
- - Example of Image Upload





