我正在尝试使用 ASP.net 配置文件我遵循了一些说明,这意味着我有
- 设置一个 ASPNETDB(使用 SQLExpress 2005)
- 配置配置文件提供程序(在 web.config 中)
- 定义了一些属性
- 启用身份验证
但我似乎无法使用类似的代码(即 Intellisense 不喜欢它)
Profile.UserCustomContent = "Hi Mom";
很明显我错过了一些重要的东西,但我看不到,请帮助我......
以下是我的一些片段web.config
<connectionStrings>
<add name="SqlServices"
connectionString="Data Source=localhost;Integrated Security=SSPI;Initial Catalogue=aspnetdb" />
</connectionStrings>
<system.web>
<authentication mode="Windows" />
<authorization>
<deny users="?"/>
</authorization>
<profile enabled="true" defaultProvider="SqlServices">
<providers>
<clear/>
<add name="SqlProvider" type="System.Web.Profile.SqlProfileProvider"
connectionStringName="SqlServices" applicationName="MyInternalApplication" />
</providers>
<properties>
<add name="UserSearchFilterOptions" type="String" />
<add name="UserCustomContent" type="String"/>
</properties>
</profile>
</system.web>