[fix]Config创建默认配置文件的开关Runtime.CreateConfigOnMissing,仅需对自动创建生效,而不应该阻止用户主动Save
智能大石头
authored at
2024-08-09 00:30:41
石头
committed at
2024-08-10 14:22:24
X
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Admin.aspx.cs" Inherits="Pages_Admin"
Title="管理员管理" MasterPageFile="~/Admin/ManagerPage.master" %>
<asp:Content ID="C" ContentPlaceHolderID="C" runat="server">
<div class="row-fluid navbar navbar-default navbar-form">
<a href="AdminForm.aspx" class="btn btn-success">添加管理员</a>
<label class="control-label">角色:</label>
<XCL:DropDownList ID="ddlRole" runat="server" DataSourceID="odsRole" AppendDataBoundItems="true"
DataTextField="Name" DataValueField="ID" AutoPostBack="True" CssClass="form-control">
<asp:ListItem Value="0">请选择</asp:ListItem>
</XCL:DropDownList>
<label class="control-label">状态:</label>
<asp:DropDownList ID="frmIsEnable" runat="server" AutoPostBack="True" CssClass="form-control">
<asp:ListItem Value="">全部</asp:ListItem>
<asp:ListItem Value="true">启用</asp:ListItem>
<asp:ListItem Value="false">禁用</asp:ListItem>
</asp:DropDownList>
<label class="control-label">关键字:</label>
<asp:TextBox runat="server" ID="txtKey" />
<asp:Button ID="Button1" runat="server" Text="查询" CssClass="btn btn-primary" />
<XCL:LinkBox ID="lbAdd" runat="server" BoxHeight="370px" BoxWidth="440px" Url="AdminForm.aspx"
IconLeft="~/Admin/images/icons/new.gif"><b>添加管理员</b></XCL:LinkBox>
<asp:Button ID="btnDelete" runat="server" Text="批量删除" OnClientClick='return confirm("确定批量删除吗?")'
OnClick="btnDelete_Click" CssClass="btn btn-danger" />
<asp:Button ID="btnEnable" runat="server" Text="批量启用" OnClientClick='return confirm("确定批量启用吗?")'
OnClick="btnEnable_Click" CssClass="btn btn-success" />
<asp:Button ID="btnDisable" runat="server" Text="批量禁用" OnClientClick='return confirm("确定批量禁用吗?")'
OnClick="btnDisable_Click" CssClass="btn btn-warning" />
<asp:Button ID="btnUpgradeToRole" runat="server" Text="批量升级为角色" OnClientClick='return confirm("确定批量升级吗?")'
OnClick="btnUpgradeToRole_Click" Visible="false" />
<asp:Button ID="btnChangePass" Visible="false" runat="server" Text="批量修改密码"
OnClientClick='return confirm("确定批量修改密码吗?")' OnClick="btnChangePass_Click" />
</div>
<div class="row-fluid">
<asp:GridView ID="gv" runat="server" AutoGenerateColumns="False" DataKeyNames="ID"
DataSourceID="ods" CssClass="table table-hover" CellPadding="0" GridLines="None" AllowPaging="True" AllowSorting="True" Width="100%">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:CheckBox ID="cb" runat="server" />
</ItemTemplate>
<HeaderStyle Width="20px" />
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
<asp:BoundField DataField="ID" HeaderText="编号" SortExpression="ID" InsertVisible="False"
ReadOnly="True">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<XCL:LinkBoxField HeaderText="用户名" DataNavigateUrlFields="ID" DataNavigateUrlFormatString="AdminForm.aspx?ID={0}"
Height="400px" DataTextField="Name" Width="370px" Title="编辑管理员" SortExpression="Name">
<ItemStyle HorizontalAlign="Center" />
</XCL:LinkBoxField>
<XCL:LinkBoxField HeaderText="友好名称" DataNavigateUrlFields="ID" DataNavigateUrlFormatString="AdminForm.aspx?ID={0}"
Height="400px" DataTextField="FriendName" Text="友好名称" Width="370px" Title="编辑管理员">
<ItemStyle HorizontalAlign="Center" />
</XCL:LinkBoxField>
<asp:BoundField DataField="RoleName" HeaderText="角色" SortExpression="RoleID" />
<asp:BoundField DataField="Logins" HeaderText="登录次数" SortExpression="Logins" />
<asp:BoundField DataField="LastLogin" HeaderText="最后登录" SortExpression="LastLogin"
DataFormatString="{0:yyyy-MM-dd HH:mm:ss}" />
<asp:BoundField DataField="LastLoginIP" HeaderText="最后登陆IP" SortExpression="LastLoginIP" />
<asp:TemplateField HeaderText="是否启用" SortExpression="Enable">
<ItemTemplate>
<asp:CheckBox ID="checkbox1" runat="server" Enabled="false" Checked='<%# Bind("Enable")%>' />
</ItemTemplate>
<EditItemTemplate>
<asp:CheckBox ID="checkbox2" runat="server" Checked='<%# Bind("Enable")%>' />
</EditItemTemplate>
</asp:TemplateField>
<asp:HyperLinkField HeaderText="编辑" DataNavigateUrlFields="ID" DataNavigateUrlFormatString="AdminForm.aspx?ID={0}" Text="编辑" />
<asp:TemplateField HeaderText="删除" ShowHeader="False">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Delete"
OnClientClick="return confirm('确定删除?');" Text="删除"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<EmptyDataTemplate>
没有数据!
</EmptyDataTemplate>
</asp:GridView>
</div>
<asp:ObjectDataSource ID="ods" runat="server" SelectMethod="Search" DeleteMethod="Delete"
EnablePaging="True" SelectCountMethod="SearchCount"
SortParameterName="orderClause">
<SelectParameters>
<asp:ControlParameter ControlID="txtKey" Name="key" Type="String" PropertyName="Text" />
<asp:ControlParameter ControlID="ddlRole" Name="roleId" Type="Int32" PropertyName="SelectedValue" />
<asp:ControlParameter ControlID="frmIsEnable" Name="isEnable" Type="Boolean" PropertyName="SelectedValue" />
<asp:Parameter Name="orderClause" Type="String" DefaultValue="ID Desc" />
<asp:Parameter DefaultValue="0" Name="startRowIndex" Type="Int32" />
<asp:Parameter DefaultValue="0" Name="maximumRows" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
<asp:ObjectDataSource ID="odsRole" runat="server" SelectMethod="FindAllWithCache"></asp:ObjectDataSource>
<XCL:GridViewExtender ID="gvExt" runat="server">
</XCL:GridViewExtender>
</asp:Content>
|