CreateUserWizard控件问题

发布于 2024-11-09 02:10:00 字数 306 浏览 0 评论 0原文

我输入了数据,但没有创建 mdf 文件。没有创建数据库..这是为什么?

我现在读过的书中的摘录:

此时,CreateUserWizard 控件在后台使用 ASP.NET Membership 类来创建新用户。默认成员资格提供程序创建 aspnetdb.mdf 文件(如果尚不存在),然后添加新的用户记录。此过程完成后,CreateUserWizard 控件将显示一条消息,通知您用户已创建。神奇的是,即使您没有在 web.config 文件中配置任何内容并且没有提前创建数据库文件,所有这一切都会自动发生。

i put data in, but no mdf file is created. No database is created.. Why is that?

An extract from the book that i have read now:

At this point, the CreateUserWizard control uses the ASP.NET Membership class behind the scenes to create a new user. The default membership provider creates the aspnetdb.mdf file (if it doesn’t exist already) and then adds the new user record. Once this process is complete, the CreateUserWizard control shows a message informing you that the user was created. Miraculously, all of this takes place automatically even though you haven’t configured anything in the web.config file and you didn’t create the database file in advance.

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

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

发布评论

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

评论(1

我只土不豪 2024-11-16 02:10:06

要检查的事项:

1:刷新您的解决方案。该文件可能隐藏在 App_Data 文件夹下。检查文件系统,即您的物理文件夹。

2:检查您的 web.config 以确保是否有与成员资格提供程序或连接字符串相关的任何特定配置。

3:处理 CreateUserError 事件以查看它是否提供更多信息。

4:检查您的事件日志以查看是否有任何错误。

5: 启动 ASP.NET 网站配置工具并查看您创建的用户是否存在。

或者我们需要更多信息,例如 web.config 设置和您的 CUW 代码(如果自定义)。

Things to check:

1: Refresh your solution. The file might be hidden under App_Data folder. Check in the file system i.e. your physical folder.

2: Check your web.config to make sure if there are any specific configuration related to membership provider or connectionstring.

3: Handle CreateUserError event to see if it gives any more info.

4: Check your Event Log to see if there are any errors.

5: Launch ASP.NET Website Configuration tool and see if the user you created exists there.

Or we need more info like web.config settings and your CUW code(if customized).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文