ASP.net 会员 Web 表单管理用户列表

发布于 2024-09-16 13:11:40 字数 954 浏览 2 评论 0原文

我一直在使用 ASP.net 会员系统,代码如下:

<asp:Login id="Login1" runat="server" 
                BorderStyle="Solid" 
                BackColor="#F7F7DE" 
                BorderWidth="1px"
                BorderColor="#CCCC99" 
                Font-Size="10pt" 
                Font-Names="Verdana" 
                CreateUserText="Create a new user..."
                CreateUserUrl="register.aspx" 
                HelpPageUrl="help.aspx"
                PasswordRecoveryUrl="getPass.aspx" 
                UserNameLabelText="Username:" 
                OnLoggingIn="OnLoggingIn"
                OnLoginError="OnLoginError" >
                <TitleTextStyle Font-Bold="True" 
                    ForeColor="#FFFFFF" 
                    BackColor="#6B696B">
                </TitleTextStyle>
            </asp:Login>

效果很好!但在我的管理区域内,我想要一个用户页面列表,并且能够编辑用户设置。

是否有一个内置的控件(我记得看到过一个,但我找不到它),或者我必须自己编写代码

I have been using the ASP.net membership system, with code such as:

<asp:Login id="Login1" runat="server" 
                BorderStyle="Solid" 
                BackColor="#F7F7DE" 
                BorderWidth="1px"
                BorderColor="#CCCC99" 
                Font-Size="10pt" 
                Font-Names="Verdana" 
                CreateUserText="Create a new user..."
                CreateUserUrl="register.aspx" 
                HelpPageUrl="help.aspx"
                PasswordRecoveryUrl="getPass.aspx" 
                UserNameLabelText="Username:" 
                OnLoggingIn="OnLoggingIn"
                OnLoginError="OnLoginError" >
                <TitleTextStyle Font-Bold="True" 
                    ForeColor="#FFFFFF" 
                    BackColor="#6B696B">
                </TitleTextStyle>
            </asp:Login>

Works great! But from within my admin area I would like a pages list of users, with the ability to edit the users settings.

Is there a built in control for this (I rmember seeing one but I cant find it), or do I have to code it myself

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

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

发布评论

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

评论(1

风轻花落早 2024-09-23 13:11:40

没有标准的内置控件可以执行此操作。您需要自己编码或搜索自定义控件。

然而,您可能正在寻找 ASP.NET 网站管理工具及其安全选项卡。这不是一个控件,而是 .net 框架附带的一组页面。您可以从 Visual Studio 的“项目”菜单(项目 - ASP.NET 配置)运行此工具,或者通过将 WebAdmin.axd 文件添加到应用程序根 URL 的末尾(例如 http://server/application/WebAdmin.axd)。出于安全原因,您只能从托管应用程序的计算机上使用此工具。

There are no standard built-in control for doing this. You need to code it yourself or search for custom controls.

However you maybe looking for ASP.NET Web Site Administration Tool and it's security tab. This is not a control but set of pages coming with .net framework. You can run this tool from Project menu of Visual Studio (Project - ASP.NET Configuration) or by adding the WebAdmin.axd file to the end of the application root URL (for example http://server/application/WebAdmin.axd). For security reasons you can use this tool only from computer where your application is hosted.

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