RE: [xsl] cookie not working inNetscape

Subject: RE: [xsl] cookie not working inNetscape
From: N   Y <yukinz_jp@xxxxxxxxxxx>
Date: Tue, 1 Jul 2003 13:06:43 +0900 (JST)
thanks for the response,

HTML page works fine in IE5, Netscape 7.02. 
XSLT page works fine in IE5, but does not work in Netscape
7.02. 
So,I'm having a problem with cookie in my XSLT.

Thanks for any hint,

Yuki N

//== HTML source code =======================

<HTML>
	<HEAD>
	<meta http-equiv="Expires" content="0"/>
	<meta http-equiv="Pragma" content="no-cache"/>
	<meta
http-equiv="Content-Type"content="test/html;charset=UTF-8"/>
	<meta content="text/javascript"
http-equiv="Content-Script-Type"/>
	<TITLE></TITLE>
	<script type="text/JavaScript">
	function getCookie(){
		var get_cookie =document.cookie+";";
alert("getCookie() : "+get_cookie);
	}

	function setCookie(cookieID){
alert("setCookie() : "+cookieID);
		document.cookie="set_cookie="+cookieID+";";
	}
	</script>
	</HEAD>

<BODY onload="setCookie('HOGE');getCookie();">
</BODY>
</HTML>


//== HTML source code =======================


//== XSLT source code =======================

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:template match="/HOGE">
<HTML>
	<HEAD>
	<meta http-equiv="Expires" content="0"/>
	<meta http-equiv="Pragma" content="no-cache"/>
	<meta
http-equiv="Content-Type"content="test/html;charset=UTF-8"/>
	<meta content="text/javascript"
http-equiv="Content-Script-Type"/>
	<TITLE></TITLE>
	<script type="text/JavaScript">
	<xsl:comment>
	<![CDATA[

	function getCookie(){
		var get_cookie =document.cookie+";";
alert("getCookie() : "+get_cookie);
	}
	
	function setCookie(cookieID){
alert("setCookie() : "+cookieID);
		document.cookie="set_cookie="+cookieID+";";
	}
	
	]]>
	</xsl:comment>
	</script>
	</HEAD>

<BODY onload="setCookie('HOGE');getCookie();">
</BODY>
</HTML>
</xsl:template>
</xsl:stylesheet>

//== XSLT source code =======================




> > I'm having a problem with cookie in my XSLT.
> 
> No, you're having a problem with cookies in HTML.
> Create and test an
> HTML page that works, then write an XSLT stylesheet
> to generate it.
> Don't blame XSLT if your HTML doesn't work.
> 
> Michael Kay
> 
>  
> > I'd like to get cookie value.
> > Everything works fine in IE5, but does not work in
> > Netscape 7.02. 
> > 
> > 
> > something wrong with my source code?
> > 
> > 
> > Thanks for any hint,
> > 
> > Yuki N
> > 
>

*********************************
 仲須 由紀                    
 yukinz_jp@xxxxxxxxxxx         
*********************************

__________________________________________________
Do You Yahoo!?
Yahoo! BB is Broadband by Yahoo!
http://bb.yahoo.co.jp/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread