when using personlization, how do you access over setting at
runtime?
Answer / karthika.s
One way to improve the usability of your application is to
allow personalization—where different users of the same
application have their own set of personalized settings. To
do this, you need a way to store user-specific data, such as
the size of the Window, the background color, etc. And while
some data should be user-specific, some data applies across
the board—things like database connection strings, Web
services URLs, etc.
You access the settings through the
Properties.Settings.Default class.It's important to
initialize the settings with a default value. If not,
accessing them during runtime will result in errors.
Is This Answer Correct ? | 0 Yes | 0 No |
What do you mean by View State and what is its role?
What's the use of formatters in .net?
Explain what benefit does your code receive if you decorate it with attributes demanding specific security permissions?
What are ASP.NET Web Forms? How is this technology different than what is available though ASP?
What are the contents of cookie?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
How to reduce the Page size in asp.net?
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.
Why is xap important?
Can we use multiple web.config files in an sigle appliction?
How to kill session?
Where would you use an iHTTPModule, and what are the limitations of any approach you might take in implementing one?