Base solution for your next web application

Activities of "jkeyser"

These are the values that worked for me.

<?xml version="1.0" encoding="utf-8"?> <configuration>

<system.webServer> <rewrite> <rules> <rule name="Angular Routes" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="./index.html" /> </rule> </rules> </rewrite> </system.webServer>

</configuration>

Where can i find that file on the server side

Thanks for your response, but that is not what I meant.

I am working on a project where a client needs to upload an excel sheet with a lot of information and it must update a database.

I want to know how this can be achieved.

Showing 1 to 3 of 3 entries