What is application variable and when it is initialized ?

Answers were Sorted based on User's Feedback



What is application variable and when it is initialized ?..

Answer / rajesh kumar

Application variable is generally Stored in Application
State in Application_start event in Global.asax file which
is fired when the first Instance of Application is created
or when first user open the Website.

Item added to the Application variable in function like
global variable in ASP.NET Page.

Is This Answer Correct ?    15 Yes 2 No

What is application variable and when it is initialized ?..

Answer / vijay

Application variable using server side state management.
It's initialized in global.asax file.
It's using all application .aspx pages.

Is This Answer Correct ?    0 Yes 2 No

What is application variable and when it is initialized ?..

Answer / naidu

Application variable is a variable that is created when the
first or new user who starts the transaction it is
intialised at that time it self .
and it is used as the global purpose also.

Is This Answer Correct ?    1 Yes 4 No

What is application variable and when it is initialized ?..

Answer / babu reddy

it is the process of clien side state managment

we can specify like

applicatio["str"]="Value for ref";

like the above in global.asax

this is for global purpose
we can use this value in any where of our application

Is This Answer Correct ?    3 Yes 10 No

Post New Answer

More ASP.NET Interview Questions

What are the intrinsic objects present in ASP.NET

1 Answers   IBM,


What are the parts of an http response?

0 Answers  


What object is used to encapsulate a rowset? a) DataSet b) DataAdapter c) DataRowSet d) DataTable

2 Answers   Syntax Softtech,


What is difference between viewstate and session in asp net?

0 Answers  


How is mvc different from asp.net? : Asp.Net MVC

0 Answers  


Can I combine classic asp and asp.net pages?

0 Answers  


How do you do exception management?

1 Answers   Accenture, BirlaSoft,


How do you add a javascript function for a link button in a datagrid?

2 Answers   Microsoft,


What layout mode is the default when a new Web Form is created? a) GridBagLayout b) GridLayout c) FlowLayout d) FormLayout

2 Answers   Syntax Softtech,


We have 2 sites in which one site allows the user with out asking credentials and second one ask for credentials through a log page. What might be the configurations settings for both sites? We can use IIS and web.config files together.

1 Answers   ADITI,


ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?

0 Answers  


What is the difference between ASP Session State and ASP.Net Session State?

0 Answers  


Categories