| Back to Questions Page |
| Question |
How to find the client browser type ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Shaheen |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Request.UserAgent  |
0 | Nirakar |
| |
| |
| Answer |
we can identify the browser name using javascript
var brw = new navigator();
alert(brw.appname);
alert(brw.appversion);  |
4 | Tiger Skumar |
| |
| |
| Answer |
Request.ServerVariables("http_user_agent")  |
2 | Venmathi |
| |
| |
|
|
| |
| Answer |
Response.Write(Request.Browser.Type);  |
3 | Vinay |
| |
| |
| Question |
About the Usage of htmlencode and urlencode ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Shaheen |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Use the Htmlencode method to encode input parameters when
generating display.
Use the urlencode method to encode the url's recieved as
input parameters  |
0 | Radha |
| |
| |
| Question |
About SOAP ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Shaheen |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Simple Object Access Protocol
It is preferred way to encode information such as data
values before sending it to or from a webservice...  |
0 | Sivasaravanan |
| |
| |
| Answer |
Simple Object Access Protocol (SOAP) is a protocol used for
messaging and it is completely XML based.
SOAP specifications are standardizes by W3C.
SOAP provides a complete set of rules for the messages,
also called SOAP envelopes, as well as rules for issues
like data encoding, handling of messages, and binding of
messages to other protocols,such as HTTP. A SOAP message is
a simple XML document, which always contains a mandatory
envelope and body element and can also contain a few
optional elements such as header and fault element.
syntax of SOAP message:
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingstyle="http://www.w3.org/2001/12/soap-
encoding">
<soap:Header>
...
...
</soap:Header>
<soap:Body>
...
<soap:fault>
...
</soap:fault>
</soap:Body>
</soap:Envelope>  |
5 | Lakshmi |
| |
| |
| Question |
About dataset and data mining ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Shaheen |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
data set is an in memory cache of data retrived from
datasource.it is major component of Ado.net. data set is a
collection of data tables.that you can relate to each other
with data relations. data set can read and write in a XML
schema.
Data minig some times called as data or knowledge discovery
it is a process of analyzing data from different
procepectives and summerizing into useful information.
information that can be used to increase revenue, cuts
costs, or both.  |
3 | Radha |
| |
| |
| Question |
Descrie about response.buffer and repsonse.flush ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Shaheen |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Respence.Buffer method can be used to specify the current
output should be buffered or not. when the buffering is set
true, the page will not send output to the client until the
scripts on the page has been processing or flush method is
call.
Response.flush method is used to send buffered output
immediatly. when the response.buffer is set true.  |
0 | Radha |
| |
| |
|
| |
|
Back to Questions Page |