fileproperties.ascx

来自「实现web管理SQL SERVER数据库」· ASCX 代码 · 共 22 行

ASCX
22
字号
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="FileProperties.ascx.cs" Inherits="SqlWebAdmin.FileProperties" %>
<asp:CheckBox Runat="server" Text="自动增长" ID="AutomaticallyGrowFileCheckBox"></asp:CheckBox>
<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp; 文件限制
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
<asp:DropDownList Runat="server" ID="GrowthTypeDropDownList">
    <asp:ListItem Text="在兆字节"></asp:ListItem>
    <asp:ListItem Text="在百分之"></asp:ListItem>
</asp:DropDownList>
<asp:TextBox Runat="server" Columns="4" ID="GrowthTextBox"></asp:TextBox>
<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp; 最大数据库文件<br>
&nbsp;&nbsp;&nbsp;&nbsp;<asp:RadioButton Runat="server" GroupName="MaximumFileSizeType" Text="无限制的大小" ID="UnrestrictedGrowthRadioButton"></asp:RadioButton><br>
&nbsp;&nbsp;&nbsp;&nbsp;<asp:RadioButton Runat="server" GroupName="MaximumFileSizeType" Text="限制大小在" ID="RestrictGrowthRadioButton"></asp:RadioButton>
&nbsp;<asp:TextBox Runat="server" Columns="4" ID="MaximumFileSizeTextBox"></asp:TextBox>
MB
<br>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?