| HttpObjectSetCookieAttribute Full Description |   | 
| Syntax   define function HttpObjectSetCookieAttribute
                 modifiable  stream HttpObject
     for         value       stream CookieName
     attribute   value       stream AttrName
     to          value       stream AttrValue
Purpose This function sets a named attribute value for a cookie header in an HTTP request or response object. If a nonexistent cookie name is specified, the HTTP object will be in error. Usually,  Input arguments: 
 Example:
 ; HttpObjectSetCookieAttribute local HttpRequest my-Request local HttpResponse my-Response HttpObjectSetCookieAttribute my-Request for "DocUserID" attribute "Domain" to "www.omnimark.com" HttpObjectSetCookieAttribute my-Response for "DocUserID" attribute "Domain" to "www.omnimark.com" |