happy knappy Level: Trainee
 Registered: 14-04-2005 Posts: 2
|
ASP on pocket PC
Hi
I'm writing a web application in ASP that run on pocket PC.
I want to save a html file in a folder on pocket PC
this is the code:
<%
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
Set myFile = objFSO.CreateTextFile(server.MapPath("../html/stampa.html"), True)
myFile.WriteLine("<HTML>")
.....
%>
Whith my Desktop PC I've no problem but on pocket PC I've the error:
"ActiveX component can't create object 'CreateObject' "
I have to change or add some library?
Thanks for help...
|