HTML Tutorials |
|
XML Tutorials |
|
Browser Scripting |
|
Server Scripting |
|
.NET (dotnet) |
|
Multimedia |
|
Web Building |
|
Java Tutorials |
|
Programming Langauges |
|
Soft Skills |
|
Database Tutorials |
|
Operating System |
|
Software Testing |
|
SAP Module |
|
Networking Programming |
|
Microsoft Office |
|
Accounting |
|
|
Cookies sind etwas Daten oder Informationen, die durch das web browser gespeichert werden. Sie erlauben uns, bestimmte Informationen �ber einen Benutzer zu speichern und sie zur�ckzuholen, jedesmal wenn sie unsere Seiten besuchen. Jeder Benutzer hat ihren eigenen einzigartigen Satz Cookies.
|
Wie wir Cookies definieren.
|
Ein Cookies ist eine Weise, in der wir etwas Informationen oder Daten �ber einen Benutzer speichern k�nnen, der unseren Aufstellungsort besichtigt. Die Informationen oder die kleinen Daten werden auf dem Einzelpersonen Computer gespeichert, und folglich ben�tigen wir keinen Extrabedienerraum, eine Seite f�r irgendeine Menge Benutzer besonders anzufertigen, die wir haben k�nnen. Um Cookies dort zu benutzen zwei Sachen sein, die du tun konntest, wird mann das Cookies eingestellt, und das andere ist zur�ckholen ein Cookies.
Cookies werden gew�hnlich durch Netzbediener benutzt, um Funktionen wie Spurhaltung deiner Besuche zu den Web site durchzuf�hren, Erm�glichen du, zu den Aufstellungsorten anzumelden und Speicherung deiner Einkaufenkarre. Jedoch ben�tigen wir nicht das phantastische web server, das programmiert, um Cookies zu benutzen.
|
Warum sind Cookies notwendig?
|
Cookies sind notwendig, weil ist das HTTP (Hyper Text-�bergangsprotokoll) das verwendet wird, um Webseiten um das Netz zu bringen, state-less. Dies hei�t, da� die Netzbediener nicht an die Informationen �ber Benutzer w�hrend ihrer Spielr�ume sich erinnern k�nnen, und also wird jeder anonym. Wenn du �berhaupt zu einem Aufstellungsort zur�ckkommst, den du vorher besichtigt hast, wirst du behandelt, als ob es dein erster Besuch war.
|
Im Java Index haben Cookies einige Eigenschaften.
|
Property |
Description |
Example |
name=value |
This sets both the cookie's name and its value. |
username=vyom |
expires=date |
This optional value sets the date that the cookie will expire on. The date should be in the format returned by the toGMTString() method of the Date object. If the expires value is not given, the cookie will be destroyed the moment the browser is closed. |
expires=3/11/2006 01:01:00 |
path=path |
This optional value specifies a path within the site to which the cookie applies. Only documents in this path will be able to retrieve the cookie. Usually this is left blank, meaning that only the path that set the cookie can retrieve it. |
path=/VyomTutorials/ |
domain=domain |
This optional value specifies a domain within which the cookie applies. Only websites in this domain will be able to retrieve the cookie. Usually this is left blank, meaning that only the domain that set the cookie can retrieve it. |
domain=vyom.com |
secure |
This optional flag indicates that the browser should use SSL when sending the cookie to the server. This flag is rarely used. |
secure |
|
Set The Cookies:Java Scipt code to set the cookies.
|
<script type="text/javascript">
function setCookie(name, value, days)
{
var dc = document.cookie;
if (!days) days = 1; // default to 1 day if empty
var expdate = new Date();
expdate.setTime(expdate.getTime() + days*24*60*60*1000);
dc = name + "=" + escape(value) +
"; expires=" + expdate.toGMTString();
}
</script>
|
|
Sets a Cookie with the given name and value.
|
<script type="text/javascript">
function setCookie(name, value, expires, path, domain, secure)
{
document.cookie= name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");
}
</script>
|
|
name Name of the cookie
value Value of the cookie
[expires] Expiration date of the cookie (default: end of current session)
[path] Path where the cookie is valid (default: path of calling document)
[domain] Domain where the cookie is valid
(default: domain of calling document)
[secure] Boolean value indicating if the cookie transmission requires a
secure transmission
|
Gets the value of the specified cookie.
|
<script type="text/javascript">
function getCookie(name)
{
var dc = document.cookie;
var prefix = name + "=";
var begin = dc.indexOf("; " + prefix);
if (begin == -1)
{
begin = dc.indexOf(prefix);
if (begin != 0) return null;
}
else
{
begin += 2;
}
var end = document.cookie.indexOf(";", begin);
if (end == -1)
{
end = dc.length;
}
return unescape(dc.substring(begin + prefix.length, end));
}
</script>
|
|
name Name of the desired cookie.
Returns a string containing value of specified cookie,
or null if cookie does not exist.
|
Deletes the specified cookie.
|
<script type="text/javascript">
function deleteCookie(name, path, domain)
{
if (getCookie(name))
{
document.cookie = name + "=" +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
"; expires=Thu, 03-nov-06 02:00:00 GMT";
}
}
</script>
|
|
name name of the cookie
[path] path of the cookie (must be same as path used to create cookie)
[domain] domain of the cookie (must be same as domain used to create cookie)
|
Keywords: cookie values, javascript cookies user, cookie expires, cookie name
|
|
HTML Quizes |
|
XML Quizes |
|
Browser Scripting Quizes |
|
Server Scripting Quizes |
|
.NET (dotnet) Quizes |
|
Multimedia Quizes |
|
Web Building Quizes |
|
Java Quizes |
|
Programming Langauges Quizes |
|
Soft Skills Quizes |
|
Database Quizes |
|
Operating System Quizes |
|
Software Testing Quizes |
|
SAP Module Quizes |
|
Networking Programming Quizes |
|
Microsoft Office Quizes |
|
Accounting Quizes |
|
|