Hi Marina. As stated previously, I've tried both extensions. Per your
request, the error:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Runtime Error
Description: An application error occurred on the server. The current
custom error settings for this application prevent the details of the
application error from being viewed remotely (for security reasons). It
could, however, be viewed by browsers running on the local server
machine.
Details: To enable the details of this specific error message to be
viewable on remote machines, please create a <customErrors> tag within a
"web.config" configuration file located in the root directory of the
current web application. This <customErrors> tag should then have its
"mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom
error page by modifying the "defaultRedirect" attribute of the
application's <customErrors> configuration tag to point to a custom
error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly"
defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
We can't see the error from the outside, because we are not running on
that server.
I don't really see, how you expected asp.net, to run an ASP page. ASP
pages are for ASP to process. ASP.NET can only process pages that end
with 'aspx'.
In any case, we can't see your error, so not much we can do.
Hi Marina. Thanks for the quick reply.
I ran the ASPNET_REGIIS.EXE with the /i switch from the 1.1 folder, so
I'm assuming it's running, I don't know where to look to find the
current running version. I have it saved with a .asp extension, but
have also tried .aspx which produces another error (if you go to
http://hemmingway.dyns.cx/Testapp.aspx ). Not sure what I'm missing,
but it's driving me nutty!
Thanks!
Rick
Are you sure asp.net is running on this machine? Does your file have
a .aspx extension?
Hi Folks,
I have a windows 2000 server installation, IIS is running and the
ASP.NET
1.1 SDK has been installed. I'm reading a book on ASP.NET and the
lessons
call for the first line to read <%@ Page Language="VB"%>. When I
save the
page and run it (from a remote machine) I get the following message;
"The scripting language 'VB' is not found on the server."
I haven't been able to find ANY other solution. When I type this
into
google, I get about 4 hits. Any suggestions or diagnostic tools
would be
great.
If you email from this post, remove the caps and underscores from
the email
address
Thanks in Advance!
Rick