asp.net.ph

HttpCookie Constructor ( String )

System.Web Namespace   HttpCookie Class


Creates and names a new cookie.

[ VB ]
Public Sub New ( _
   ByVal name As String _
)

[ C# ]
public HttpCookie (
   string name
);

[ C++ ]
public: HttpCookie (
   String* name
);

[ JScript ]
public function HttpCookie (
   name : String
);

Parameters

name
The name of the new cookie.

Example

The following example creates and names a new cookie.

[ VB ] 
Dim myCookie As New HttpCookie ( "LastVisit" )

[ C# ] 
HttpCookie myCookie = new HttpCookie ( "LastVisit" );
See Also

HttpCookie Members   HttpCookie Constructor Overload List Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph