EDUDOTNET

Monday, March 14, 2016

How to get javascript variable to retain value after page refresh?

This is possible to using cookies, localStorage or sessionStorage etc. We can use localStorage for it. we need to set a varibale that should be reflected in next pages or after reload the page.  eg.: var myval = "xyz"; localStorage.setItem("myval", myval); after that we can get the stored value from localStorage by page reloaded/Refresh... like: var...

C# Attributes Overview [What are attributes and why do we use it?]

C# Attributes Overview Attributes are elements that allow you to add declarative information to your programs. This declarative information is used for various purposes during run-time and can be used at design time by application development tools. Attributes provide a powerful method of associating declarative information with...