这似乎是一个愚蠢的问题,但是我编译的代码试图从exe所在的目录访问文件,但是exe具有相同的路径和所需的文件。我在做什么错了?
答案 0 :(得分:0)
找到了我的答案here
<?xml version="1.0"?>
<configuration>
<!-- this would be for just that one file -->
<location path="UserGuid.PDF">
<system.web>
<authorization>
<allow roles="Admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
<!-- this would be for whole directory -->
<system.web>
<authorization>
<allow roles="Admin"/>
<deny users="*"/>
</authorization>
</system.web>
</configuration>