Holas tengo un codigo q en mi IIS4 funciona OK, pero cuando lo pongo en mi server q tiene IIS5 sale error, aca les pongo el codigo q tengo:
<% 'Retrieve proper sections
Section = Request.Querystring("Topic")
Pag = Request.Querystring("Pag")
id = Request.Querystring("id")
sp_char = Chr(34)
'initialize variables %>
<% Select case Section
case "home","acerca","equipos","aplic","medicos","infor mes"
header = "header.asp?Topic=" & Section
contents = "contents.asp?Topic=" & Section
case "nuevaplic" %>
<% Select case Pag %>
<% case "1","2","3","4" %>
<% header = "header.asp?Topic=" & Section
contents = "contents.asp?Topic=" & Section & "&Pag=" & Pag %>
<% case "5" %>
<% header = "header.asp?Topic=" & Section
contents = "contents.asp?Topic=" & Section & "&Pag=" & Pag & "#" & id
%>
<% case else %>
<% header = "header.asp?Topic=" & Section
contents = "contents.asp?Topic=" & Section & "&Pag=1" %>
<% End Select %>
<% case else
Section = "home"
header = "header.asp?Topic=" & Section
contents = "contents.asp?Topic=" & Section
End Select %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="keywords"
content="Resonancia Magnética, Resomasa, Resonancia,Magnética,Medicina,Perú">
<meta NAME="description" CONTENT="Resonancia Magnética S.A.">
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<meta HTTP-EQUIV="Expires" CONTENT="0">
<meta name="AUTHOR" content="Julio Lau, email:
[email protected]">
<title>Resonancia Magnética S.A.:</title>
</head>
<frameset framespacing="0" border="0" frameborder="0" rows="121,*">
<frame name="header" scrolling="no" noresize target="main" marginwidth="0" marginheight="0" src="<%= header %>">
<frame name="main" src="<%= contents %>">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>