Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Name atleast three methods of response object other than Redirect.
Name atleast three methods of response object other than Redirect.
✍: Guest
Answer1
a) Response.Clear( )
Clears the content of the current output stream.
b) Response.Close( )
Closes the network socket for the current response.
c) Response.End( )
Stops processing the current request and sends all buffered content to the client immediately.
Answer2
methods of Response is
Redirect
a. Transfer
2014-09-29, 1647👍, 0💬
Popular Posts:
How do I install JUnit? First I will download the lastest version of JUnit. Then I will extract all ...
How can you raise custom errors from stored procedure ? The RAISERROR statement is used to produce a...
. How can a servlet refresh automatically if some new data has entered the database? You can use a c...
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...
What's wrong with this initialization? char *p = malloc(10); My compiler is complaining about an ``i...