71 lines
3.5 KiB
Plaintext
71 lines
3.5 KiB
Plaintext
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SoftManageEdit.aspx.cs" Inherits="FineUIPro.Web.SmartSite.SoftManageEdit" %>
|
||
|
|
|
||
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
|
<head runat="server">
|
||
|
|
<title>编辑软件管理</title>
|
||
|
|
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<form id="form1" runat="server">
|
||
|
|
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
|
||
|
|
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
||
|
|
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
||
|
|
<Rows>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:DropDownList ID="drpProject" runat="server" Label="项目" EnableEdit="true" FocusOnPageLoad="true"
|
||
|
|
AutoPostBack="true" OnSelectedIndexChanged="drpProject_SelectedIndexChanged">
|
||
|
|
</f:DropDownList>
|
||
|
|
<f:DropDownList ID="drpEQ" runat="server" Label="设备" EnableEdit="true" >
|
||
|
|
</f:DropDownList>
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:TextBox ID="txtEquipmentSoftName" runat="server" Label="软件名称" Required="true" ShowRedStar="true" MaxLength="200">
|
||
|
|
</f:TextBox>
|
||
|
|
<f:TextBox ID="txtEquipmentSoftModel" runat="server" Label="软件版本" MaxLength="200">
|
||
|
|
</f:TextBox>
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:NumberBox ID="txtNumber" runat="server" Label="数量" NoDecimal="true" NoNegative="true">
|
||
|
|
</f:NumberBox>
|
||
|
|
<f:TextBox ID="txtRunningState" runat="server" Label="运行状态" MaxLength="50">
|
||
|
|
</f:TextBox>
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:TextBox ID="txtSupplier" runat="server" Label="供货商" MaxLength="500">
|
||
|
|
</f:TextBox>
|
||
|
|
<f:TextBox ID="txtSupplierMan" runat="server" Label="联系人" MaxLength="50">
|
||
|
|
</f:TextBox>
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
<f:FormRow>
|
||
|
|
<Items>
|
||
|
|
<f:TextBox ID="txtSupplierTel" runat="server" Label="联系电话" MaxLength="50">
|
||
|
|
</f:TextBox>
|
||
|
|
<f:Label runat="server" ID="lb"></f:Label>
|
||
|
|
</Items>
|
||
|
|
</f:FormRow>
|
||
|
|
</Rows>
|
||
|
|
<Toolbars>
|
||
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
||
|
|
<Items>
|
||
|
|
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1" Hidden="true"
|
||
|
|
OnClick="btnSave_Click" Text="保存">
|
||
|
|
</f:Button>
|
||
|
|
<f:Button ID="btnClose" EnablePostBack="false" Text="关闭" runat="server" Icon="SystemClose">
|
||
|
|
</f:Button>
|
||
|
|
</Items>
|
||
|
|
</f:Toolbar>
|
||
|
|
</Toolbars>
|
||
|
|
</f:Form>
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|