ASP.NET - 个性化
网站是为用户的重复访问而设计的。 个性化允许网站记住用户身份和其他详细信息,并向每个用户呈现个性化的环境。
ASP.NET 提供个性化网站的服务,以满足特定客户的品味和偏好。
了解配置文件
ASP.NET个性化服务基于用户配置文件。 用户配置文件定义了站点所需的有关用户的信息类型。 例如,姓名、年龄、地址、出生日期和电话号码。
此信息在应用程序的 web.config 文件中定义,ASP.NET 运行时读取并使用它。 这项工作由个性化提供完成。
从用户数据中获取的用户配置文件存储在 ASP.NET 创建的默认数据库中。 您可以创建自己的数据库来存储配置文件。 配置文件数据定义存储在配置文件 web.config 中。
示例
让我们创建一个示例网站,希望我们的应用程序能够记住用户详细信息,例如姓名、地址、出生日期等。在 <system.web> 元素内的 web.config 文件中添加个人资料详细信息。
<configuration> <system.web> <profile> <properties> <add name="Name" type ="String"/> <add name="Birthday" type ="System.DateTime"/> <group name="Address"> <add name="Street"/> <add name="City"/> <add name="State"/> <add name="Zipcode"/> </group> </properties> </profile> </system.web> </configuration>
当配置文件在 web.config 文件中定义时,可以通过当前 HttpContext 中找到的 Profile 属性来使用该配置文件,也可以通过页面使用该配置文件。
添加文本框以获取配置文件中定义的用户输入,并添加用于提交数据的按钮:
更新 Page_load 以显示配置文件信息:
using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!this.IsPostBack) { ProfileCommon pc=this.Profile.GetProfile(Profile.UserName); if (pc != null) { this.txtname.Text = pc.Name; this.txtaddr.Text = pc.Address.Street; this.txtcity.Text = pc.Address.City; this.txtstate.Text = pc.Address.State; this.txtzip.Text = pc.Address.Zipcode; this.Calendar1.SelectedDate = pc.Birthday; } } } }
为"提交"按钮编写以下处理程序,用于将用户数据保存到配置文件中:
protected void btnsubmit_Click(object sender, EventArgs e) { ProfileCommon pc=this.Profile.GetProfile(Profile.UserName); if (pc != null) { pc.Name = this.txtname.Text; pc.Address.Street = this.txtaddr.Text; pc.Address.City = this.txtcity.Text; pc.Address.State = this.txtstate.Text; pc.Address.Zipcode = this.txtzip.Text; pc.Birthday = this.Calendar1.SelectedDate; pc.Save(); } }
第一次执行页面时,需要用户输入信息。 但是,下次用户详细信息将自动加载。
<add> 元素的属性
除了我们使用的 name 和 type 属性之外,<add> 元素还有其他属性。 下表说明了其中一些属性:
属性 | 描述 |
---|---|
name | 属性的名称。 |
type | 默认情况下,类型为字符串,但它允许任何完全限定的类名作为数据类型。 |
serializeAs | 序列化此值时使用的格式。 |
readOnly | 只读配置文件值无法更改,默认情况下此属性为 false。 |
defaultValue | 配置文件不存在或没有信息时使用的默认值。 |
allowAnonymous | 一个布尔值,指示此属性是否可以与匿名配置文件一起使用。 |
Provider | 应该用于管理此属性的配置文件提供程序。 |
匿名个性化
匿名个性化允许用户在表明自己身份之前对网站进行个性化设置。 例如,Amazon.com 允许用户在登录之前在购物车中添加商品。要启用此功能,web.config 文件可以配置为:
<anonymousIdentification enabled ="true" cookieName=".ASPXANONYMOUSUSER" cookieTimeout="120000" cookiePath="/" cookieRequiresSSL="false" cookieSlidingExpiration="true" cookieprotection="Encryption" coolieless="UseDeviceProfile"/>