How do you create a permanent cookie?
Answer Posted / sapna
Cookie is like a temporary file which contains a name and a
value pair and resides in the client.
cookie prepared or modified by the server side script will
be appended to the response and will be sent to the client.
dim cook as httpcookie
cook=new httpcookie("items")
cook.value=textbox1.text
response.appendcookie(cook).
| Is This Answer Correct ? | 13 Yes | 15 No |
Post New Answer View All Answers
What is asp.net architecture?
What is Bundling and Minification in MVC?
How do you secure your connection string information?
WSDL means?
What is ispostback method in asp.net?
Will session work if cookies is disabled?
What is an example of an application service provider?
In early binding will the method invoked on com component will verify it?s existance in the system or not ?
How long does an http session last?
What are the types of caching in asp.net?
What is %20 in a url?
What a diffgram is, and a good use for one?
What is Cookies Less Session?
What is the difference between “Web.config” and “Machine.Config”?
What is meant by server side scripting?