net中调用服务器页面中的配置文件

net中调用服务器页面中的配置文件

本文介绍了如何在asp.net中调用服务器页面中的配置文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

个人资料defaultprovider =MyProfileProvider>

个提供者>

< add> name =MyProfileProvidertype =System.Web.Profile.SqlProfileProviderconnectionStringName =dbconnection/>

/ add>

/ providers

/ profile>

profile defaultprovider="MyProfileProvider">
providers>
<add> name="MyProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="dbconnection" />
/add>
/providers
/profile>

推荐答案

<profile defaultProvider="AspNetSqlProfileProvider">
  <properties>
     <add name="Name" />
     <add name="Weight" type="System.Int32" />
     <add name="BirthDate" 

          type="System.DateTime" />
  </properties>
</profile>





您可以在ASP.NET代码中获得它的价值





You can get its value in your ASP.NET code as

// if the programming language is C#, then
DateTime bday = Profile.BirthDate;





你必须始终至少一次谷歌你的问题,有一个解决方案准备好你与...合作。祝你好运!



You must always at least once Google your problems, there is a solution ready for you to work with. Good luck!



这篇关于如何在asp.net中调用服务器页面中的配置文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 03:10