Tag: Development

Community

Cookies in ASP.NET

Cookie are one of several ways to store data about web site visitors during the time when web server and browser are not connected. Common use of cookies is to remember users between visits. Practically, cookie is a small text file sent by web server and saved by web browser on client machine.

Community

WMI wrapper

(Eric Marcon) WMI is a powerful technology widely used by programmers to manage computers. it can be accessed in .Net through the System.Management namespace. Although WMI classes are highly structured, the common way to use it is through WQL requests returning variant objects. The purpose of the WM

Community

Reading and Writing Strings

(Jim Mischel) Writing a string to a binary file is more complicated than it might at first appear. The concept is easy, but the implementation can be a little tricky. The basic idea is to write an integer that represents the string’s length, and then write the string’s characters. But there are two