【问题标题】:How I can use profile in web application如何在 Web 应用程序中使用配置文件
【发布时间】:2011-11-07 18:03:25
【问题描述】:

我从网站转移到网络应用程序以改进它,我的网站中有个人资料。

我的配置文件不起作用,所以我实现了 System.Web.ProfileProvider 并创建了一个类 ProfileCommon 继承 ProfileBase 我使用 HttpContext.Current.Profile.SetPropertyValue 和 GetPropertyValue。它可以工作,但问题是它有一个逻辑错误,因为 HttpContext.Current.Profile 没有调用我的 ProfileProvider 方法我该如何修复它?或者也许在 web 应用程序中还有其他配置文件的实现?

    public class ProfileCommon : ProfileBase
{
    public string FirstName 
    {
        get
        {
            return HttpContext.Current.Profile.GetPropertyValue("FirstName").ToString();
        }
        set
        {
            HttpContext.Current.Profile.SetPropertyValue("FirstName", value);
        }
    }
}

在 web.config 中

<profile inherits="BaniBookWebApp.Code.Core.ProfileCommon">
  <providers>
    <add name="CustomProfileProvider" type="BaniBookWebApp.Code.Core.CustomProfileProvider"/> 
  </providers>     
</profile>

自定义配置文件提供者:

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using eLearn2Model;
using System.Collections;
using System.Configuration;

namespace AccessControl
{
    public class ProfileProvider : System.Web.Profile.ProfileProvider
    {
        public ProfileProvider()
        {
        }

        public override int DeleteInactiveProfiles(System.Web.Profile.ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate)
        {
            int res = -1;
            using (var db = new eLearn2Entities())
            {
                List<Profile> profiles = (from m in db.Profiles
                                                 where (m.LastUpdatedDate.CompareTo(userInactiveSinceDate) < 0)
                                                 select m).ToList();
                foreach (Profile profile in profiles)
                {
                    if (profile != null)
                    {
                        db.Profiles.DeleteObject(profile);
                        res = db.SaveChanges();
                    }
                }
            }
            return res;
        }

        public override int DeleteProfiles(string[] usernames)
        {
            int res = -1;
            using (var db = new eLearn2Entities())
            {
                foreach (string username in usernames)
                {
                    Profile profile = (from m in db.Profiles
                                              join n in db.Users on m.UserId equals n.UserId
                                              where n.UserName == username
                                              select m).SingleOrDefault();
                    if (profile != null)
                    {
                        db.Profiles.DeleteObject(profile);
                        res = db.SaveChanges();
                    }
                }
            }
            return res;
        }

        public override int DeleteProfiles(System.Web.Profile.ProfileInfoCollection profiles)
        {
            throw new NotImplementedException();
        }      

        public override System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection collection)
        {
            System.Configuration.SettingsPropertyValueCollection spvc = new System.Configuration.SettingsPropertyValueCollection();
            lock (collection.SyncRoot)
            {
                foreach (object item in collection)
                {
                    SettingsProperty sp = (SettingsProperty)item;
                    SettingsPropertyValue spv = new SettingsPropertyValue(sp);
                    spvc.Add(spv);
                }
            }
            return spvc;
        }

        public override void SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection collection)
        {
            string PropertyNames_ = string.Empty;
            string PropertyValuesString_ = string.Empty;
            string userID = string.Empty;
            lock (collection.SyncRoot)
            {
                foreach (object item in collection)
                {
                    SettingsPropertyValue spv = (SettingsPropertyValue)item;
                    if (spv.PropertyValue != null)
                    {
                        if (!string.IsNullOrEmpty(spv.PropertyValue.ToString()))
                        {
                            if (spv.Name.Equals("UserID"))
                            {
                                userID = spv.PropertyValue.ToString();
                            }
                            else
                            {
                                PropertyNames_ += spv.Name + ";";
                                PropertyValuesString_ += spv.PropertyValue.ToString() + ";";
                            }
                        }
                    }
                }//foreach            
            }//lock

            try
            {
                using (var db = new eLearn2Entities())
                {
                    bool isAuthenticated = bool.Parse(context["IsAuthenticated"].ToString());

                    Profile profile = new Profile()
                    {
                        UserId = Guid.Parse(userID),                       
                        PropertyValuesString = PropertyValuesString_,
                        PropertyNames = PropertyNames_,
                        LastUpdatedDate = DateTime.UtcNow
                    };
                    db.Profiles.AddObject(profile);
                    db.SaveChanges();
                }
            }
            catch
            {
                using (var db = new eLearn2Entities())
                {
                    //bookmark gives me an error said multiple record
                    Guid myID = Guid.Parse(userID);
                    Profile existed_profile = db.Profiles.Where
                        (item => item.UserId == myID).SingleOrDefault() as Profile;

                    existed_profile.PropertyValuesString = PropertyValuesString_;
                    existed_profile.PropertyNames = PropertyNames_;
                    existed_profile.LastUpdatedDate = DateTime.UtcNow;

                    db.Profiles.ApplyOriginalValues(existed_profile);
                    db.SaveChanges();
                }

            }
        }
    }
}

【问题讨论】:

  • 您能否展示您的自定义配置文件提供程序实现?

标签: c# asp.net web-applications


【解决方案1】:

您是否尝试过在 web.config 中添加 enabled="true"?

<profile inherits="BaniBookWebApp.Code.Core.ProfileCommon" enabled="true">

【讨论】:

    猜你喜欢
    • 2013-03-23
    • 2023-04-08
    • 2014-10-14
    • 2013-07-22
    • 2011-07-23
    • 1970-01-01
    • 1970-01-01
    • 2020-09-20
    • 1970-01-01
    相关资源
    最近更新 更多