ASP.NET 2.0(C#)(7) - Profile(存储用户配置)
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-19
leMigrateEventArgs pe)
{
// 获得匿名配置
ProfileCommon anonProfile = Profile.GetProfile(pe.AnonymousID);
// 从匿名配置中取值并赋值给经过身份验证的配置
if (anonProfile.Color != System.Drawing.Color.Empty)
{
Profile.Color = anonProfile.Color;
}
// 从数据库中删除匿名配置
ProfileManager.DeleteProfile(pe.AnonymousID);
// 清除与某个会话关联的匿名 Cookie 或标识符
AnonymousIdentificationModule.ClearAnonymousIdentifier();
}
示例 App_Code/CustomProfile.cs 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; using System.Web.Profile; /**//// <summary> /// CustomProfile 的摘要说明 /// </summary> public class CustomProfile : ProfileBase { private string _customName; public string CustomName { get { return (string)base["CustomName"]; } set { base["CustomName"] = value; } } private bool _customSex; public bool CustomSex { get { return (bool)base["CustomSex"]; } set { base["CustomSex"] = value; } } } web.config <profile enabled="true" defaultProvider="SqlProfileProvider" inherits="CustomProfile"> <providers> <add name="SqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="SqlConnectionString" applicationName="/" /> </providers> <properties> <add name="Name" /> <add name="Color" type="System.Drawing.Color" /> <group name="Group"> <add name="Collection" type="System.Collections.ArrayList" /> <add name="Price" type="int" defaultValue="100" /> </group> </properties> </profile> Profile/Test.aspx <%@ Page Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Profile_Test" Title="存储用户配置测试" %> <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server"> <asp:Label ID="lbl" runat="Server" /> </asp:Content> Profile/Test.aspx.cs using System; using System.Data; using System.Configuration; using System.Collections; 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.Htm |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于ASP.NET 2.0(C#)(7) - Profile(存储用户配置)的所有评论