对不起,我是 ASP.NET 的新手
我已经写了这个页面,但是当我运行它时,尽管浏览器中的URL是真的,它会进入登录页面。知道为什么会这样吗?
代码是:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="root_VerifyUsers.aspx.cs"
Inherits="Library.Account.root" MasterPageFile="~/Root.Master" %>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<p>
<h1>
Verify Users
</h1>
</p>
<asp:Login ID="VerifyUser" runat="server" EnableViewState="false" RenderOuterTable="false">
<LayoutTemplate>
<div class="accountInfo">
<p>
<asp:ListBox ID="ListBox1" runat="server" Width="100%" Height="100%"></asp:ListBox>
</p>
<p>
<asp:Button ID="LoginButton" runat="server" Text="Log In"
ValidationGroup="LoginUserValidationGroup" onclick="LoginButton_Click"
Width="691px" Height="48px"/>
</p>
</div>
</LayoutTemplate>
</asp:Login>
</asp:Content>
后面的代码是:
namespace Library.Account
{
public partial class root : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}