Server configuration asp [closed]

0

Good afternoon. I am venturing into a server asp, only that I am lost in your configuration. As dev php, I put an index.php on an asp server waiting for it to work, though it did not work. Looking for more, I realized that I should configure web.config, then searching the net, set it up as follows.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="default2.asp" />
<add value="default.asp" />
<add value="index.asp" />
</files>
</defaultDocument>
</system.webServer>
</configuration>

But I get the following error:

I got this error, both in the root and in a subfolder. If I delete the web-config, it does not call any file. Can you give me a help with this setting?

(I am exporting a server, it worked perfectly on the old server, but the webconfig from there, it was not in the folder I have access to)

    
asked by anonymous 23.07.2018 / 21:55

1 answer

1

I just came to the conclusion that both setup errors and non-default / index acknowledgments were because the server does not run classic asp (my current application), just asp.net.

    
24.07.2018 / 03:55