profile 的 group 的 remove 元素(ASP.NET 设置架构)

更新:2007 年 11 月

从用户配置文件属性组移除属性。

此元素是 .NET Framework 2.0 版中的新元素。

<configuration> 元素
  system.web 元素(ASP.NET 设置架构)
    profile 元素(ASP.NET 设置架构)
      profile 的 properties 元素(ASP.NET 设置架构)
        profile 的 properties 的 group 元素(ASP.NET 设置架构)
          profile 的 group 的 remove 元素(ASP.NET 设置架构)

<remove name="property name" />

属性和元素

下面几部分描述了属性、子元素和父元素。

属性

属性

说明

name

必选的 String 属性。

指定要从集合中移除的属性定义的名称。

子元素

无。

父元素

元素

说明

configuration

指定公共语言运行库和 .NET Framework 应用程序所使用的每个配置文件中均需要的根元素。

system.web

为 ASP.NET 配置节指定根元素。

profile

为应用程序配置用户配置文件。

properties

定义用户配置文件属性和属性组的集合。

group

定义用户配置文件属性的分组。

备注

有关访问和修改应用程序代码中 profile 元素的配置值的信息,请参见 ProfileSection

示例

下面的示例 Web.config 文件指定一个用户配置文件,此配置文件包含组名为 Address 的属性组。添加属性之前先移除 Address 组中的属性,以确保使用此配置中的属性定义。有关用户配置文件的信息以及设置和读取用户配置文件属性组的示例,请参见 ASP.NET 配置文件属性概述

<configuration>
   <connectionStrings>
       <add name="SqlServices" connectionString="Data Source=localhost;Integrated Security=SSPI;Initial 
            Catalog=aspnetdb;" />
   </connectionStrings>

  <system.web>
      <authentication mode="Forms" >
        <forms loginUrl="login.aspx"
             name=".ASPXFORMSAUTH" />
      </authentication>

       <authorization>
          <deny users="?" />
       </authorization>

      <membership defaultProvider="SqlProvider" userIsOnlineTimeWindow="15">
        <providers>
          <clear />
          <add 
            name="SqlProvider" 
            type="System.Web.Security.SqlMembershipProvider" 
            connectionStringName="SqlServices"
            enablePasswordRetrieval="false"
            enablePasswordReset="true"
            requiresQuestionAndAnswer="true" 
            requiresUniqueEmail="false"
            passwordFormat="Hashed"
            applicationName="MyApplication" />
        </providers>
      </membership>

      <profile defaultProvider="SqlProvider">
        <providers>
          <add
            name="SqlProvider"
            connectionStringName="SqlServices"
            applicationName="MyApplication"
            type="System.Web.Profile.SqlProfileProvider" />
        </providers>

        <properties>
          <add name="ZipCode" />
          <group name="Address">
             <remove name="Street" />
             <remove name="City" />
             <remove name="State" />
             <remove name="CountryOrRegion" />
             <add name="Street" />
             <add name="City" />
             <add name="State" />
             <add name="CountryOrRegion" />
          </group>
        </properties>
      </profile>
   </system.web>
</configuration>

元素信息

配置节处理程序

System.Web.Configuration.ProfileSection

配置成员

SystemWebSectionGroup.Profile

可配置的位置

Machine.config

根级别的 Web.config

应用程序级别的 Web.config

要求

Microsoft Internet 信息服务 (IIS) 版本 5.0、5.1 或 6.0

.NET Framework 2.0 版

Microsoft Visual Studio 2005

请参见

任务

如何:锁定 ASP.NET 配置设置

概念

ASP.NET 配置文件属性概述

ASP.NET 配置概述

ASP.NET Web 服务器控件和浏览器功能

保证 ASP.NET 配置的安全

ASP.NET 配置方案

参考

profile 的 properties 的 group 元素(ASP.NET 设置架构)

profile 元素(ASP.NET 设置架构)

system.web 元素(ASP.NET 设置架构)

<configuration> 元素

profile 的 group 的 remove 元素(ASP.NET 设置架构)

ProfileSection

System.Web.Configuration

System.Configuration

其他资源

ASP.NET 配置文件

ASP.NET 配置设置

常规配置设置 (ASP.NET)

ASP.NET 配置 API