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 |
In asp.net, how can you validate drop down box?
Do you know using sql cache invalidation?
If we add a textbox and give the required field validator,and i add two radio buttons 1 is yes another one is No.And i add another one server control button ,if i click the button ,if the radio button Yes is checked the validation control is fired ,if no the validation control is not fired.So what you used to solve this problem.
how can we create wcf in asp.net and how can we cll that in to asp.net application?plsss tel me each step clearly
How do we ensure view state has not tampered?
What is server components?
Details on web.config and global.asax - just explain what are the sections will be there.
How can you access the properties and controls of master pages from content pages?
What is httpresponse?
What is custom events?
write six HTTP request method?
What is bson in web api?