Visual Studio 2008

October 3, 2007

The next version of Visual Studio, Microsoft® Visual Studio® 2008, will provide an industry-leading developer experience for Windows Vista, the 2007 Microsoft Office system, and the Web. In addition, it will continue in the Microsoft tradition of development language innovation.


Source Code Websites

June 15, 2007

Common Type System

June 14, 2007

The common type system defines how types are declared, used, and managed in the common language runtime. Read the rest of this entry »


Customized SearchEngines.java

June 7, 2007

The SearchEnginesFrontEnd servlet shown above sends its data to the CustomizedSearchEngines servlet. Read the rest of this entry »


SearchEngines FrontEnd.java

June 7, 2007

This servlet builds the form-based front end to the search engine servlet. Read the rest of this entry »


LongLivedCookie.java

June 7, 2007

(Download source code)

Here’s a small class that you can use instead of Cookie Read the rest of this entry »


Getting the Value of a Cookie with a Specified Name

June 7, 2007

Here’s a section of ServletUtilities.java that slightly simplifies the retrieval of a cookie Read the rest of this entry »


Reading Cookies from the Client

June 7, 2007

To send cookies to the client, you created a Cookie then used addCookie to send a Set-Cookie HTTP response header Read the rest of this entry »


Placing Cookies in the Response Headers

June 7, 2007

The cookie is added to the Set-Cookie response header Read the rest of this entry »


Reading and Specifying Cookie Attributes

June 7, 2007

Before adding the cookie to the outgoing headers, you can look up or set attributes of the cookie. Here’s a summary: Read the rest of this entry »