67 lines
2.8 KiB
Plaintext
67 lines
2.8 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MaterialSetEdit.aspx.cs"
|
|
Inherits="FineUIPro.Web.HJGL.Match.MaterialSetEdit" %>
|
|
|
|
<!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 id="Head1" runat="server">
|
|
<title>编辑管道组成件信息</title>
|
|
<link href="../../res/css/common.css" rel="stylesheet" type="text/css" />
|
|
<style type="text/css">
|
|
.labcenter
|
|
{
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</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:TextBox ID="txtCode" runat="server" Label="代码"
|
|
MaxLength="50" FocusOnPageLoad="true" Required="true" ShowRedStar="true">
|
|
</f:TextBox>
|
|
<f:TextBox ID="txtName" runat="server" Label="名称"
|
|
MaxLength="50" Required="true" ShowRedStar="true">
|
|
</f:TextBox>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtStandard" runat="server" Label="规格"
|
|
MaxLength="20">
|
|
</f:TextBox>
|
|
<f:TextBox ID="txtUNIT" runat="server" Label="计量单位"
|
|
MaxLength="10">
|
|
</f:TextBox>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtSteelName" runat="server" Label="材质"
|
|
MaxLength="50">
|
|
</f:TextBox>
|
|
<f:Label runat="server" ID="tempLable"></f:Label>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Toolbars>
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
|
<Items>
|
|
<f:ToolbarFill runat="server"></f:ToolbarFill>
|
|
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1" Text="提交" ToolTip="提交"
|
|
OnClick="btnSave_Click">
|
|
</f:Button>
|
|
<f:Button ID="btnClose" EnablePostBack="false" Text="关闭" ToolTip="关闭" runat="server" Icon="SystemClose">
|
|
</f:Button>
|
|
</Items>
|
|
</f:Toolbar>
|
|
</Toolbars>
|
|
</f:Form>
|
|
</form>
|
|
</body>
|
|
</html>
|