Browser Detection using Xalan Extensions

Subject: Browser Detection using Xalan Extensions
From: Kiran Vadlamudi <kiran.learn@xxxxxxx>
Date: 25 Oct 00 15:41:48 MDT
Hi,
I am using the Xalan parser for the extension and I am trying to detect the
client's browser machine. My 'bcheck' variable is blank

---- XSL Start --
<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
    version="1.0"   
    xmlns:lxslt="http://xml.apache.org/xslt";
    xmlns:my-ext="ext1"
    extension-element-prefixes="my-ext">

 <lxslt:component prefix="my-ext">
   <lxslt:script lang="javascript">
	function getBType()
	{
		var b = (navigator.appVersion.indexOf('MSIE') != -1) ? 'ie' : 'ns';
		 return b;
	}
     </lxslt:script>
  </lxslt:component>

<xsl:variable name="bcheck" select="my-ext:getBType()"/>

---- XSL End --

Is there any other way to do the browser settings using xsl.
Thanks,
K.

____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1


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


Current Thread