145 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" MasterPageFile="../masterPage.master" AutoEventWireup="true" CodeFile="DeptMain.aspx.cs" Inherits="DeptMain" %>
 | ||
| 
 | ||
| <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
 | ||
| 
 | ||
|  
 | ||
| <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
 | ||
| <table width="100%" class="Table_NoBorder">
 | ||
|     
 | ||
|     <tr><td>
 | ||
|     <table width="100%" class="Table_Border">
 | ||
|     <tr><td width="50" height="200" align="left"  valign="top">
 | ||
|         <asp:TreeView ID="TreeDept" runat="server" ShowLines="True" OnSelectedNodeChanged="TreeDept_SelectedNodeChanged" ImageSet="Arrows">
 | ||
|             <Nodes>
 | ||
|                 <asp:TreeNode Text="WMS" Value="0" Expanded="True" Selected="True"></asp:TreeNode>
 | ||
|             </Nodes>
 | ||
|             <SelectedNodeStyle BackColor="Azure" BorderColor="Transparent" />
 | ||
|         </asp:TreeView>
 | ||
|     </td>
 | ||
|     <td width="1" class="VLine" ></td>
 | ||
|     <td    align="left" valign="top"> <!------ THE DATA GRID AREA ------>
 | ||
|         
 | ||
|         <asp:Label ID="lbDataGridTitle" Visible="false" runat="server"  CssClass="Label" Text="部门维护"  />
 | ||
|         <asp:Label ID="lbEdit" Visible="false" runat="server"  CssClass="Label" Text=""></asp:Label>
 | ||
|         <asp:gridview   id="GridView1"  CssClass="DataGrid"   
 | ||
| 							 PageSize="10" PagerStyle-HorizontalAlign="Right"
 | ||
|                         runat="server" 
 | ||
|                         AutoGenerateColumns="False" 
 | ||
|                         DataKeyNames="ID"
 | ||
|                         OnRowDeleting="GridView1_RowDeleting" 
 | ||
|                         AllowPaging="True" 
 | ||
|                         OnPageIndexChanging="GridView1_PageIndexChanging" 
 | ||
|                         OnRowDataBound="GridView1_RowDataBound" 
 | ||
|                         OnSorting="GridView1_Sorting"  OnSelectedIndexChanged="GridView1_SelectedIndexChanged" Width="95% " ShowFooter="True" EmptyDataText='没有数据。'>
 | ||
| 						 
 | ||
|             <Columns>
 | ||
| <asp:BoundField ReadOnly="True" DataField="ID" Visible="true" SortExpression="ID" HeaderText="部门编号"></asp:BoundField>
 | ||
| <asp:BoundField DataField="DEP_NAME" SortExpression="DEP_NAME" HeaderText="部门名称"></asp:BoundField>
 | ||
| <asp:BoundField DataField="DEP_CODE" SortExpression="DEP_CODE" HeaderText="部门代码"></asp:BoundField>
 | ||
| <asp:BoundField DataField="EM_NAME" SortExpression="DEP_CODE" HeaderText="负责人"></asp:BoundField>
 | ||
| <asp:BoundField DataField="typeName" SortExpression="typeName" HeaderText="部门类型"></asp:BoundField>
 | ||
| <asp:BoundField DataField="DEP_DESC" SortExpression="DEP_DESC" HeaderText="部门描述"></asp:BoundField>
 | ||
| <asp:BoundField DataField="dr" Visible="False" SortExpression="dr" HeaderText="可用"></asp:BoundField>
 | ||
| <asp:CommandField SelectText="<img src=../Images/edit.gif border=0 title=修改  >" ShowDeleteButton="True" ShowHeader="True" DeleteText="<img src=../Images/Delete.gif border=0 title=删除 onclick='return delete_click()'>" ShowSelectButton="True" HeaderText="编 辑">
 | ||
| <HeaderStyle Width="15%" HorizontalAlign="Center"></HeaderStyle>
 | ||
| 
 | ||
| <ItemStyle Width="15%" HorizontalAlign="Center"></ItemStyle>
 | ||
| </asp:CommandField>
 | ||
| </Columns>
 | ||
| 							<RowStyle CssClass="ItemStyle" HorizontalAlign="Center"></RowStyle>
 | ||
|                         
 | ||
|                         <SelectedRowStyle CssClass="SelectedItemStyle"></SelectedRowStyle>
 | ||
|             <PagerStyle HorizontalAlign="Right" />
 | ||
| 							<HeaderStyle CssClass="HeaderStyle" HorizontalAlign="Center"></HeaderStyle>
 | ||
| 							<AlternatingRowStyle CssClass="AlternatingItemStyle"></AlternatingRowStyle>
 | ||
|             <emptydatatemplate> 没有数据</emptydatatemplate>
 | ||
|         </asp:gridview>
 | ||
|          <asp:Button ID="btn_addNew" runat="server" Text="新增记录" CssClass="Button" OnClick="btnAddnew_Click" /> 
 | ||
|          
 | ||
|           <asp:Panel ID ="DataDetail" runat="server" Width="100%" Visible="false">
 | ||
|        
 | ||
|         <!------ THE ADD /DELETE AREA ------>
 | ||
|         <table class="Table_NoBorder" width="90%">
 | ||
|           <tr>
 | ||
|             <td  colspan ="4" class="ALine"  >
 | ||
|             </td>
 | ||
|             </tr>
 | ||
| 			<tr><td>
 | ||
|                 <asp:Label ID="Label2" runat="server"  CssClass="Label" Text="部门名称"></asp:Label></td><td  >
 | ||
|                  
 | ||
| 					<asp:TextBox ID="txtDepName" runat="server"  CssClass="TextBox" MaxLength="25"></asp:TextBox>
 | ||
|                 <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtDepName"
 | ||
|                     ErrorMessage="*" ValidationGroup="1">*</asp:RequiredFieldValidator></td>
 | ||
| 			<td>
 | ||
|                  <asp:Label ID="Label4" runat="server"  CssClass="Label" Text="部门代码"></asp:Label></td><td  >
 | ||
| 					<asp:TextBox ID="txtDepcode" runat="server"  CssClass="TextBox" MaxLength="25"></asp:TextBox>
 | ||
|                 </td>
 | ||
| 			</tr>
 | ||
| 			<tr>
 | ||
| 			<td>
 | ||
|                  <asp:Label ID="Label15" runat="server"  CssClass="Label" Text="部门类别"></asp:Label></td>
 | ||
|                  <td  >
 | ||
|               
 | ||
|                     <asp:DropDownList ID="dlstDeptType" runat="server" CssClass="DropDownList">
 | ||
|                     
 | ||
|                      </asp:DropDownList></td>
 | ||
|                
 | ||
|                     <td>
 | ||
|                          <asp:Label ID="Label3" runat="server"  CssClass="Label" Text="部门描述"></asp:Label></td>
 | ||
|                          <td  >
 | ||
|                         <asp:TextBox ID="txtDepDesc"  CssClass="Long_TextBox" runat="server" MaxLength="50"></asp:TextBox>
 | ||
|                         
 | ||
|                     
 | ||
|                   </td>
 | ||
|              </tr>
 | ||
|             <tr>
 | ||
| 		     	<td  >
 | ||
|                  <asp:Label ID="Label1" runat="server"  CssClass="Label" Text="部门负责人"></asp:Label></td>
 | ||
|                  <td    >
 | ||
|                      
 | ||
|                      <asp:DropDownList ID="DropDownList1" runat="server" CssClass="DropDownList">
 | ||
|                      </asp:DropDownList></td>
 | ||
|                    
 | ||
|                     <td  >
 | ||
|                  <asp:Label ID="Label5" runat="server"  CssClass="Label" Text="上级部门"></asp:Label></td>
 | ||
|                  <td    >
 | ||
|                      
 | ||
|                      <asp:DropDownList ID="drplstDept" runat="server" CssClass="DropDownList">
 | ||
|                      </asp:DropDownList></td>
 | ||
|                      
 | ||
|                </tr>
 | ||
| 
 | ||
|                 <tr>
 | ||
| 		     	   <td    >
 | ||
|                  <asp:Label ID="Label7" runat="server"  CssClass="Label" Text="服务地址"></asp:Label></td>
 | ||
|                  <td  colspan ="3"  >
 | ||
|                      
 | ||
|                      <asp:TextBox ID="txtSvrAddress"  CssClass="Long_TextBox" runat="server" MaxLength="50"></asp:TextBox>
 | ||
|                        
 | ||
|                      </td>
 | ||
|                      
 | ||
|                </tr>
 | ||
| 
 | ||
| 
 | ||
| 
 | ||
| 			<tr>
 | ||
|             <td  colspan ="4" class="ALine"  >
 | ||
|             </td>
 | ||
|             </tr>
 | ||
|               <tr> 
 | ||
|             <td   align="center"  colspan ="4" >   <asp:Button ID="btnSubmit" runat="server" CssClass="Button" Text="保存数据" OnClick="btnSubmit_Click" ValidationGroup="1" />
 | ||
|                  
 | ||
|                  </td>
 | ||
|             </tr>
 | ||
|             </table>
 | ||
|             </asp:Panel>
 | ||
|        </td></tr>
 | ||
|      
 | ||
|    
 | ||
|         
 | ||
|    </table>
 | ||
|    </td></tr>
 | ||
|  </table>   
 | ||
|  </asp:Content>
 | ||
| 
 |