| Back to Questions Page |
| Question |
Types of caching ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Type of Caching:-
1) Output caching
2) Fragment Caching
3) Data Caching  |
0 | Amit Khatri Persistent Systems |
| |
| |
| Question |
How to check null values in dataset ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Dataset.TableName[RowNumber].IsCOLUMNNAMENull
response.PayAnyonePaymentDetails[0].IsQueueNumberNull()
 |
3 | Guest |
| |
| |
| Answer |
if dataset.tables(0).rows.count = 0  |
0 | Fusion It |
| |
| |
|
|
| |
| Question |
Types of state management techniques ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
There are two types of state management options available.
1)client side statemanagement.
2)server side statemanagement.
In Client side statemanagement
1)View state
2)query string
3)custom cookies
In server side statemanagement
1)Session state
2)application state  |
5 | Krupali |
| |
| |
| Answer |
ASP.NET Supports various client side and server side state
management.
client side
view state,hidden fields, cookies, query strings
server side
Application state, session state, Database.  |
0 | Arockia Johnsi Rani J |
| |
| |
| Question |
What is runtime host ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
The runtime host loads the runtime into a process, creates
the application domains within the process, and loads user
code into the application domains.
 |
0 | Rana Rashid |
| |
| |
| Question |
How do you pass session values from one page to another ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
1.In first page set session variable. e.g.
Session ["Name"] = "Pravesh";
Here "Name" is name of session variable and "Pravesh" is
the value of session variable "Name".
2. In next page get the sesion variable. e.g.:-
string myName=Session["Name"].ToString();  |
4 | Pravesh Chourasia |
| |
| |
| Answer |
request query:
response.redirect("requireform.aspx"?get=txtbox1.text);
requireform.aspx
txtbox2.text=get
server transfer:
dim my as string
m="value"
server.transfer("requireform.aspx"?get=m)
requireform:
dim t as string
t=page.request("m")  |
0 | Raja Mohamed |
| |
| |
| Question |
What is the difference between session state and session
variables ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Session state is used to store session specific information
for a website.
session variable store infomation between http request for
a particular user.  |
0 | Shiva |
| |
| |
| Question |
What is machine.config and web.config ? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Mathur |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
machine.config that are used only applciations
where as web.config are used web projects  |
0 | Chinna |
| |
| |
| Answer |
Machine.config file is for all ASP.NET's Application. it is
only one.
if u apply anything in machine.config file then it is
applied on all ASP.NET application.Machine.config file is
universal..
while web.config file is only for particular ASP.NET
application. each ASP.NET application has different file.  |
2 | Nitya |
| |
| |
| Answer |
machine.config is used in only Asp.net application
web.config is used for all web application  |
0 | Versha |
| |
| |
| Answer |
Machine.Config is the common config file for all .net
application.
But Web.Config file is specific for project  |
0 | Deepti |
| |
| |
|
| |
|
Back to Questions Page |