<head runat="server"> <title>Untitled Page</title> <script language="javascript"> function show_all_cookies(){ var cookie = document.cookie;
// split it into key-value pairs var cookie_pieces = cookie.split(';');
// for each of those pairs, split into key and value for(var i=0; i<cookie_pieces.length; i++){
// get the cookie piece and trim it var piece = trim(cookie_pieces[i]);
// find the location of the '=' and split the string var a = piece.indexOf('='); if (a == -1){ // there was no '=' - so we have a key and no value var key = piece; var value = ''; }else{ // we found an '=' - split the string in two var key = piece.substr(0,a); var value = piece.substr(a+1); }
// now display our cookies alert('Key: ' + key + " Value : "+ value); } }
function trim(str){
// trim off leading spaces while (str.charAt(0) == ' '){ str = str.substring(1); }
//trim off trailing spaces while (str.charAt(str.length-1) == ' '){ str = str.substring(0,str.length-1); }
Dim cookie1 = New HttpCookie("somecookie") cookie1.Values.Add("comecookie", "somevalue") Response.Cookies.Add(cookie1)
og har indsat følgende på min side:
<script language="javascript"> function show_all_cookies(){ var cookie = document.cookie;
// split it into key-value pairs var cookie_pieces = cookie.split(';');
// for each of those pairs, split into key and value for(var i=0; i<cookie_pieces.length; i++){ // get the cookie piece and trim it var piece = trim(cookie_pieces[i]);
// find the location of the '=' and split the string var a = piece.indexOf('='); if (a == -1){ // there was no '=' - so we have a key and no value var key = piece; var value = ''; }else{ // we found an '=' - split the string in two var key = piece.substr(0,a); var value = piece.substr(a+1); }
// now display our cookies alert('Key: ' + key + " Value : "+ value); } }
function trim(str){ // trim off leading spaces while (str.charAt(0) == ' '){ str = str.substring(1); }
//trim off trailing spaces while (str.charAt(str.length-1) == ' '){ str = str.substring(0,str.length-1); } return str; } //show_all_cookies(); </script>
Metoden bliver kaldt efter at cookies er oprettet, da asp.net koden ligger i en aspx fil, som efter at have oprettet de to cookies, sender en videre til en html side med min javascriptkode!
Det kommer frem i en dialogboks og det er ligemeget med at paste, for hver gang jeg kører min applikation er det ny værdi. Jeg tror nu ikke det er her problemet ligger, jeg tror dette er en cookie min applikation opretter til et eller andet formål.
Jeg tror mit problem er at mine cookies af en eller anden grund ikke bliver oprettet.
det eksempel jeg sendte dig 24/08-2005 11:44:38 fungerer helt upåklageligt her - også hvis du lægger scriptet på en html-side (jeg har prøvet begge dele). - så jeg er uenig :o) mvh
Synes godt om
Ny brugerNybegynder
Din løsning...
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.