- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道如何在库类中使用 Profile.GetProfile()
方法。我尝试在 Page.aspx.cs 中使用此方法,它运行良好。
如何使在 page.aspx.cs 中工作的方法在类库中工作。
最佳答案
在 ASP.NET 中,Profile 是 HttpContext.Current.Profile 的一个钩子(Hook)。属性,它返回一个动态生成的类型为 ProfileCommon 的对象,派生自 System.Web.Profile.ProfileBase .
ProfileCommon 显然包含一个 GetProfile(string username) 方法,但您不会在 MSDN 中找到它的正式文档(并且它不会出现在 visual studio 的智能感知中),因为大多数 ProfileCommon 类是在您的 ASP.NET 应用程序时动态生成的已编译(属性和方法的确切列表将取决于“配置文件”在您的 web.config 中的配置方式)。 GetProfile() does get a mention on this MSDN page , 所以它看起来是真实的。
也许在您的库类中,问题在于未从 web.config 中获取配置信息。您的库类是包含 Web 应用程序的解决方案的一部分,还是您只是在孤立地处理库?
关于c# - 如何在库类中使用 Profile.GetProfile()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1446826/
我不知道如何在库类中使用 Profile.GetProfile() 方法。我尝试在 Page.aspx.cs 中使用此方法,它运行良好。 如何使在 page.aspx.cs 中工作的方法在类库中工作。
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeApsFrame.getProfile()方法的一些代码示例,展示了ZigBeeApsFrame.getProfile
如果我想返回特定的用户信息,Membership.GetUser 和 Profile.GetProfile 有什么不同? 最佳答案 Membership和 Profile是两个完全不同的东西。 Mem
我正在为我的nodejs项目调用node-auth0 sdk。 auth0.getProfile(accessToken, function (err, userInfo) { if (err
我正在尝试使用 VK API,并设置了一个应用程序并设置了到目前为止我需要的一切。但是,当我针对 mz 配置文件调用 account.GetProfiles 方法时,我收到以下错误消息: {"erro
尝试从服务加载数据时收到以下错误消息:Error: undefined is not an object (evaluating 'ProfileService.getProfile(1).then
我的代码是: OrientGraphFactory factory = new OrientGraphFactory(GlobalProperties.orientDB_IP, GlobalPrope
我是一名优秀的程序员,十分优秀!