码迷,mamicode.com
首页 > Web开发 > 详细

在唯一密钥属性“value”设置为“Default.aspx”时,无法添加类型为“add”的重复集合项

时间:2015-02-01 19:02:50      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:

环境:windows server 2012  asp.net 

找到网站目录:wwwroot ,打开web.config文件,在

在<files>与</files>之间加入代码

添加如下:

<clear />

<add value="index.php" />

<add value="Default.htm" />

<add value="index.htm" />

<add value="index.html" />

<add value="iisstart.htm" />

<add value="default.aspx" />

 

效果是:

<?xml version="1.0" encoding="UTF-8"?>
<!--
  有关如何配置 ASP.NET 应用程序的详细信息,请访问
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
  </system.web>
    <system.webServer>
        <defaultDocument>
            <files>
<clear />

<add value="index.php" />    

<add value="Default.htm" />    

<add value="index.htm" />    

<add value="index.html" />   

<add value="iisstart.htm" />

<add value="default.aspx" />

            </files>
        </defaultDocument>
    </system.webServer>
</configuration>

 

在唯一密钥属性“value”设置为“Default.aspx”时,无法添加类型为“add”的重复集合项

标签:

原文地址:http://www.cnblogs.com/feijian/p/4265867.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!