Trying to create 1st asp file...
this doesn't work so far, any pointers?
<SCRIPT LANGUAGE="VBScript" RUNAT="SERVER">
<%
set hello = server.createobject("HelloServer.Hello")
response.write hello.getHello()
%>
</SCRIPT>
Printable View
Trying to create 1st asp file...
this doesn't work so far, any pointers?
<SCRIPT LANGUAGE="VBScript" RUNAT="SERVER">
<%
set hello = server.createobject("HelloServer.Hello")
response.write hello.getHello()
%>
</SCRIPT>
The other thing I have noticed is that asp extension files do not have an icon associated with them, so I probably have to put them in a directory for them to be able to instatiate the dll on this machine or kick over the web server?
Any tips appreciated.
I have put the file in D:\Inetpub\wwwroot but still no luck there is still no icon next to the files with asp extension.
What do I have to do to get this script to run?
you cant just double click an asp page and expect it to run..You have to browser to it using an http address.
like if you have pws/iis isntalled on that computer then you would use
http://localhost/myfile.asp
assuming the file is in the wwwroot dir.
finally got it to work :rolleyes:
the script that worked needed me to regsvr the dll then also had to rewrite the script
now onto implementing the rest of the soap toolkit 3.0 so vb 6 apps can consume webservices...