本文介绍了帮助ASP.NET成员资格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我第一次尝试使用ASP.NET会员资格,可以使用一些

帮助。


我正在跟进一本书,建议我在VS 2005中使用Web应用程序

管理工具。


一些问题:


1.它为验证方法提供的唯一选择是Windows

和Passport。根据我的阅读,表格是我需要的。谁能告诉我

为什么这个选项不可用?


2.我看到它生成了一个完整的新数据库来存储会员资格/>
信息。这没关系我想但是它没有选择

将这些表存储在我的主数据库中?是否是创建

单独数据库的标准?我需要存储的大部分数据将与用户相关联,因此我假设我想要组合数据库并能够扩展

用户信息ASP.NET创建的。我在这里偏离轨道吗?


感谢您的帮助。


-

乔纳森伍德

SoftCircuits编程
http://www.softcircuits.com

I''m taking my first stab at using ASP.NET memberships and could use some
help.

I''m following along in a book, which recommends I use the Web Application
Administration Tool in VS 2005.

A couple of problems:

1. The only choices it gives me for the authentication method are Windows
and Passport. Based on what I read, forms is what I need. Can anyone tell me
why this option isn''t available?

2. I see it generated a complete, new database to store the membership
information in. That''s okay I guess but doesn''t it have the option of
storing those tables in my main database? Is it the standard to create a
separate database? Most of the data I need to store will be associated with
the users and so I assume I''d want to combine database and be able to extend
the user information that ASP.NET created. Am I off-track here?

Thanks for any help.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

推荐答案







Ack!好吧,再次运行它我看到的措辞是用户如何访问

站点,选择来自Web或本地网络。从Web上选择

''确实似乎实现了表单身份验证模式。我猜想我以前做的不太好。

Ack! Well, running it again I see the wording is how will users access the
site and the choices are from the Web or from a local network. Selecting
''from the Web'' does indeed seem to implement forms authentication mode. I
guess I didn''t quite get what it was doing before.



但正如我之前提到的,我真正需要存储的唯一数据是一些

关于用户的其他信息。您是否建议我创建一个新的

数据库,以便我有两个不同的数据库来存储我的用户的数据?


注意:我的网站将被托管共享主机服务。


谢谢。


Jonathan

But as I mentioned before, the only data I really need to store is some
additional information about the users. Are you recommending I create a new
database so that I have two different databases that store my users'' data?

Note: My site will be hosted on a shared hosting service.

Thanks.

Jonathan


这篇关于帮助ASP.NET成员资格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 06:13