将 YAF.NET 集成到我现有的 ASP.NET WebForm 项目中

发布于 2024-11-13 21:05:57 字数 311 浏览 3 评论 0原文

好的,我有一个网站,我想将其与 YAF.NET 集成,我想要 YAF.NET使用与我的网络应用程序相同的会员提供程序,我想知道实现此结果的最佳方法是什么。

我的 webapp 和 YAF 都运行得很好。

我认为也许最好的方法是使用虚拟目录,但是这样我就无法在 YAF 中使用 web 应用程序中的母版页文件。仅仅复制并粘贴整个项目听起来很糟糕。也许我应该粘贴 DLL 并尝试找出剩下的内容,但是有很多像服务这样的东西,我不确定它们是否可以工作......

Ok so I have a website and I want to integrate it with YAF.NET, I'd like YAF.NET to use the same Membership Provider as my web application already does, and I was wondering what would be the best way to achieve this result.

I have both the webapp and YAF working perfectly fine on their own.

I thought maybe the best way was using a virtual directory, but then I wouldn't be able to use a master page file from the webapp within YAF. And just copying and pasting the whole project sounds horrible. Maybe I should just paste the DLLs and try figuring out what's left but there's a lot of stuff like services and I'm not sure whether they'd work...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

差↓一点笑了 2024-11-20 21:05:57

Another Forum.NET 使用 web.config 中定义的标准 ASP.NET 成员资格。

更改 web.config 文件中的成员资格提供程序。

<system.web>
  <authentication mode="Forms"/>
  <membership
  defaultProvider="myMembershipProvider" >
    <providers>
      <add name="myMembershipProvider"
      type="myMembershipProvider"
      requiresQuestionAndAnswer="true"
      connectionString="Provider=Microsoft.Jet.
        OLEDB.4.0;Data Source=C:\myMembershipProvider\
        App_Data\Members.mdb;Persist Security
        Info=False"
        />
    </providers>
  </membership>
</system.web>

Yet Another Forum.NET uses standard ASP.NET Membership defined in the web.config.

Change the membership provider in web.config file.

<system.web>
  <authentication mode="Forms"/>
  <membership
  defaultProvider="myMembershipProvider" >
    <providers>
      <add name="myMembershipProvider"
      type="myMembershipProvider"
      requiresQuestionAndAnswer="true"
      connectionString="Provider=Microsoft.Jet.
        OLEDB.4.0;Data Source=C:\myMembershipProvider\
        App_Data\Members.mdb;Persist Security
        Info=False"
        />
    </providers>
  </membership>
</system.web>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文