I am using IIs with ASP and XML/XSL.
The following page works but takes 30 seconds. It takes the same time upon first load as when it calls itself. However the XML/XSL transition takes 3 seconds when run using IIS/IE6 or the SAXON XML parser.
<%@ Language=JScript %>
<html>
<head>
<link rel="stylesheet" type="text/css" href="catalog.css" />
</head>
<body>
<%
if(Request.Form.Count > 0)
var strExpression = "company[coname='" + Request.Form("frmconame".Item + "']";
else
var strExpression = "company[coname='ESRI UK']";
domTocStyle = Session("domTocStyle"
var xNode = domTocStyle.selectSingleNode("//xsl:apply-templates[@mode='toc']"
xNode.setAttribute("select",strExpression);
Response.Write(Session("domCat".transformNode(domTocStyle));
%>
</body>
</html>
This is run in a frame. The outer asp loads the xml and xsl objects correctly.
What is IIS doing for the other 27 seconds?
Anyone any thoughts?
The following page works but takes 30 seconds. It takes the same time upon first load as when it calls itself. However the XML/XSL transition takes 3 seconds when run using IIS/IE6 or the SAXON XML parser.
<%@ Language=JScript %>
<html>
<head>
<link rel="stylesheet" type="text/css" href="catalog.css" />
</head>
<body>
<%
if(Request.Form.Count > 0)
var strExpression = "company[coname='" + Request.Form("frmconame".Item + "']";
else
var strExpression = "company[coname='ESRI UK']";
domTocStyle = Session("domTocStyle"
var xNode = domTocStyle.selectSingleNode("//xsl:apply-templates[@mode='toc']"
xNode.setAttribute("select",strExpression);
Response.Write(Session("domCat".transformNode(domTocStyle));
%>
</body>
</html>
This is run in a frame. The outer asp loads the xml and xsl objects correctly.
What is IIS doing for the other 27 seconds?
Anyone any thoughts?