In BBj 18.0 and higher, this method returns a new BBjCookie object with the name set.
You should set the value of the cookie and any other attributes before adding it to the BBjspWebResponse by calling BBjspWebResponse::addCookie(BBjCookie).
Return Value |
Method |
createCookie(string name) |
Variable |
Description |
name |
Specifies the name of the cookie. |
a new BBjCookie object with the name set.
The example below shows how to add a new cookie through the BBjspWebResponse object. Note that you must execute the cookie's BBjCookie::setValue(String) and BBjCookie::setMaxAge(int) methods in order to successfully create the cookie.
This example demonstrates how this works in a BBJSP web-page
|
This example demonstrates how this works in a BBJSP servlet
|