fileproperties.ascx
来自「wrox c#高级编程」· ASCX 代码 · 共 22 行
ASCX
22 行
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="FileProperties.ascx.cs" Inherits="SqlWebAdmin.FileProperties" %>
<asp:CheckBox Runat="server" Text="Automatically grow file" ID="AutomaticallyGrowFileCheckBox"></asp:CheckBox>
<br>
<br>
File growth
<br>
<asp:DropDownList Runat="server" ID="GrowthTypeDropDownList">
<asp:ListItem Text="In megabytes"></asp:ListItem>
<asp:ListItem Text="By percent"></asp:ListItem>
</asp:DropDownList>
<asp:TextBox Runat="server" Columns="4" ID="GrowthTextBox"></asp:TextBox>
<br>
<br>
Maximum file size<br>
<asp:RadioButton Runat="server" GroupName="MaximumFileSizeType" Text="Unrestricted file growth" ID="UnrestrictedGrowthRadioButton"></asp:RadioButton><br>
<asp:RadioButton Runat="server" GroupName="MaximumFileSizeType" Text="Restrict file growth" ID="RestrictGrowthRadioButton"></asp:RadioButton>
<asp:TextBox Runat="server" Columns="4" ID="MaximumFileSizeTextBox"></asp:TextBox>
MB
<br>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?