What is application variable and when it is initialized ?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
What are the intrinsic objects present in ASP.NET
What are the parts of an http response?
What object is used to encapsulate a rowset? a) DataSet b) DataAdapter c) DataRowSet d) DataTable
What is difference between viewstate and session in asp net?
How is mvc different from asp.net? : Asp.Net MVC
Can I combine classic asp and asp.net pages?
How do you do exception management?
1 Answers Accenture, BirlaSoft,
How do you add a javascript function for a link button in a datagrid?
What layout mode is the default when a new Web Form is created? a) GridBagLayout b) GridLayout c) FlowLayout d) FormLayout
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.
ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?
What is the difference between ASP Session State and ASP.Net Session State?