How to remove cache object in asp.net?
Answers were Sorted based on User's Feedback
Answer / amey
For Each de As DictionaryEntry In HttpContext.Current.Cache
HttpContext.Current.Cache.Remove(DirectCast(de.Key, String))
Is This Answer Correct ? | 0 Yes | 2 No |
A brief difference between Session and Cookies in asp.net
In order to get assembly info which namespace we should import?
Using code explain Configuration Management
Why is validation always done on the server? When does that occur?
What is session id in web application?
Are cookies client side or server side?
What are session state modes? List some of the important session state modes of asp.net.
What’s the difference between response .redirect and server.transfer?
What is the namespace to create thread in .net?
How to prevent client side validation from the ASP.NET validation controls?
How can you achieve nested Masterpages in 2.0?
Take a Large textbox allow to type any data. Task 1:display the count of vowels in a lable on key press event of the textbox Task 2:dispaly count of dates in a lable when dates in following foramats:dd/mm/yy , mm/dd/yy , yy/mm/dd. Task3:compare 2 dates and display both are same or not which dates are in dd/mm/yy and mm/dd/yy farmats.