2024-05-12 11:10:50 +08:00
|
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AnalysisEdit.aspx.cs" Inherits="FineUIPro.Web.WelderManage.AnalysisEdit" %>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head runat="server">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<title></title>
|
|
|
|
</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:Label runat="server" ID="lbWedlerName" Label="焊工姓名" LabelWidth="120px"></f:Label>
|
|
|
|
<f:Label runat="server" ID="lbWedlerCode" Label="焊工代号" LabelWidth="120px"></f:Label>
|
|
|
|
</Items>
|
|
|
|
</f:FormRow>
|
|
|
|
<f:FormRow>
|
|
|
|
<Items>
|
|
|
|
<f:Label ID="txtQualifiedProjectCode" runat="server" Label="合格项目代号" MaxLength="100" ShowRedStar="true" Required="true" LabelWidth="120px">
|
|
|
|
</f:Label>
|
|
|
|
</Items>
|
|
|
|
</f:FormRow>
|
|
|
|
<f:FormRow>
|
|
|
|
<Items>
|
2024-05-12 11:19:50 +08:00
|
|
|
<f:DropDownList runat="server" Label="可焊焊接方法" ID="drpWeldingMethod" EnableMultiSelect="true" ShowRedStar="true" Required="true" LabelWidth="120px" EnableEdit="false">
|
2024-05-12 11:10:50 +08:00
|
|
|
</f:DropDownList>
|
|
|
|
</Items>
|
|
|
|
</f:FormRow>
|
|
|
|
<f:FormRow>
|
|
|
|
<Items>
|
2024-05-12 11:19:50 +08:00
|
|
|
<f:DropDownList ID="drpMaterialType" runat="server" EnableMultiSelect="true" Label="焊接材质类型范围" MaxLength="50" LabelWidth="120px">
|
|
|
|
</f:DropDownList>
|
2024-05-12 11:10:50 +08:00
|
|
|
|
|
|
|
</Items>
|
|
|
|
</f:FormRow>
|
|
|
|
<f:FormRow>
|
|
|
|
<Items>
|
2024-05-12 11:19:50 +08:00
|
|
|
<f:DropDownList runat="server" Label="焊接位置范围" ID="drpWeldingLocation" LabelWidth="120px" EnableMultiSelect="true" EnableEdit="false">
|
|
|
|
</f:DropDownList>
|
2024-05-12 11:10:50 +08:00
|
|
|
</Items>
|
|
|
|
</f:FormRow>
|
|
|
|
<f:FormRow>
|
|
|
|
<Items>
|
|
|
|
<f:TextBox ID="txtExamProject" runat="server" Label="考试项目" MaxLength="50" LabelWidth="120px">
|
|
|
|
</f:TextBox>
|
|
|
|
</Items>
|
|
|
|
</f:FormRow>
|
|
|
|
<f:FormRow>
|
|
|
|
<Items>
|
|
|
|
<f:DropDownList ID="drpIsPass" runat="server" Label="是否合格" LabelWidth="120px">
|
|
|
|
<f:ListItem Value="是" Text="是" Selected="true" />
|
|
|
|
<f:ListItem Value="否" Text="否" />
|
|
|
|
</f:DropDownList>
|
|
|
|
</Items>
|
|
|
|
</f:FormRow>
|
|
|
|
<f:FormRow>
|
|
|
|
<Items>
|
|
|
|
<f:TextBox ID="txtRemark" runat="server" Label="备注" MaxLength="50" LabelWidth="120px">
|
|
|
|
</f:TextBox>
|
|
|
|
</Items>
|
|
|
|
</f:FormRow>
|
|
|
|
</Rows>
|
|
|
|
<Toolbars>
|
|
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
|
|
|
<Items>
|
|
|
|
<f:Label runat="server" ID="lbTemp"></f:Label>
|
|
|
|
<f:ToolbarFill ID="ToolbarFill1" runat="server"></f:ToolbarFill>
|
|
|
|
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1"
|
|
|
|
OnClick="btnSave_Click">
|
|
|
|
</f:Button>
|
|
|
|
<f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" runat="server" Icon="SystemClose">
|
|
|
|
</f:Button>
|
|
|
|
</Items>
|
|
|
|
</f:Toolbar>
|
|
|
|
</Toolbars>
|
|
|
|
</f:Form>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|