Error - "UNICODE ASP files are not supported"
When I run ExecuteTransfer.asp (Chapter 7 Page 284), I receive the following error :
Error Type:
Active Server Pages, ASP 0239 (0x80004005)
UNICODE ASP files are not supported.
/begasp/page1.html, line 1
The code is below:
<HTML>
<HEAD>
<TITLE>Transfer and Execute Example</TITLE>
</HEAD>
<BODY>
<%
Response.Write "We're here on the original page"
Server.Execute "page1.html"
Response.Write "We're back again on the original page"
Server.Transfer "page2.html"
Response.Write "We're back again on the original page"
%>
</BODY>
</HTML>
The error happens on the " Server.Execute "page1.html" statement as I don't receive this error when I have only the first Response.Write in the code. (That's why I don't think it has anything to do with the format I save the file in.
Any help would be appreciated.
|