⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 viewflowbyuser.aspx

📁 办公自动化系统
💻 ASPX
字号:
<%@ Page language="c#" Codebehind="ViewFlowByUser.aspx.cs" AutoEventWireup="false" Inherits="OfficeAuto.DesktopModules.DocumentFlow.ApproveDocument" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>文档流转管理:</title>
		<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
		<meta name="CODE_LANGUAGE" Content="C#">
		<meta name="vs_defaultClientScript" content="JavaScript">
		<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
		<LINK href="../../Css/DateCSS.css" type="text/css" rel="stylesheet">
	</HEAD>
	<BODY leftMargin="0" topMargin="0" rightMargin="0">
		<form id="Flow" method="post" runat="server">
			<TABLE class="gbtext" id="Table1" cellSpacing="0" cellPadding="0" width="100%" border="0">
				<tr>
					<td vAlign="top" colspan="2"><TABLE borderColor="#111111" height="1" cellSpacing="0" cellPadding="0" width="100%" border="0">
							<TR height="30">
								<TD class="GbText" width="20" background="../../../Images/treetopbg.jpg" bgColor="#c0d9e6"
									align="right"><FONT color="#003366" size="3"><IMG height="16" src="../../../DataImages/DocFlow.gif" width="16"></FONT></TD>
								<TD class="GbText" background="../../../Images/treetopbg.jpg" bgColor="#e8f4ff" width="60"
									align="right"><font color="#006699">文档流转</font></TD>
								<TD class="GbText" background="../../../Images/treetopbg.jpg" bgColor="#e8f4ff" align="right"><FONT face="宋体">&nbsp;&nbsp;&nbsp;</FONT></TD>
								<td align="right" class="GbText" bgColor="#e8f4ff">
									<asp:Button id="AddFlowBtn" runat="server" Width="152px" Text="添加新的公文流转" CssClass="buttoncss"
										accessKey="N"></asp:Button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
							</TR>
						</TABLE>
					</td>
				</tr>
				<TR>
					<TD width="100%">
						<asp:DataGrid id="dgFlowList" runat="server" Width="100%" AutoGenerateColumns="False" AllowSorting="True"
							AllowPaging="True" Font-Size="X-Small" BorderColor="#93BEE2" BorderStyle="None" BorderWidth="1px"
							BackColor="White" CellPadding="4" DataKeyField="DocFlowID">
							<FooterStyle ForeColor="#003399" BackColor="#99CCCC"></FooterStyle>
							<SelectedItemStyle ForeColor="#CCFF99" BackColor="#009999"></SelectedItemStyle>
							<AlternatingItemStyle Font-Size="X-Small" BackColor="#E8F4FF"></AlternatingItemStyle>
							<ItemStyle Font-Size="X-Small" ForeColor="#003399" BackColor="White"></ItemStyle>
							<HeaderStyle HorizontalAlign="Left" ForeColor="White" VerticalAlign="Middle" BackColor="#337FB2"></HeaderStyle>
							<Columns>
								<asp:TemplateColumn HeaderText="流转ID">
									<HeaderStyle Width="80px"></HeaderStyle>
									<ItemStyle HorizontalAlign="Center"></ItemStyle>
									<ItemTemplate>
										<asp:CheckBox id="DocFlowID" runat="server"></asp:CheckBox>
									</ItemTemplate>
								</asp:TemplateColumn>
								<asp:HyperLinkColumn DataNavigateUrlField="DocFlowID" DataNavigateUrlFormatString="LookFlow.aspx?FlowID={0}"
									DataTextField="FlowName" HeaderText="流程名称" Target="_blank">
									<HeaderStyle Font-Size="X-Small" Width="120px"></HeaderStyle>
									<ItemStyle Font-Size="X-Small"></ItemStyle>
								</asp:HyperLinkColumn>
								<asp:BoundColumn DataField="FlowDesn" HeaderText="流程简介">
									<HeaderStyle Width="30%"></HeaderStyle>
								</asp:BoundColumn>
								<asp:TemplateColumn HeaderText="流程发起人">
									<HeaderStyle HorizontalAlign="Center" Width="120px"></HeaderStyle>
									<ItemStyle HorizontalAlign="Center"></ItemStyle>
									<ItemTemplate>
										<%#DataBinder.Eval(Container.DataItem,"RealName")%>
									</ItemTemplate>
								</asp:TemplateColumn>
								<asp:TemplateColumn HeaderText="流程接受人">
									<HeaderStyle HorizontalAlign="Center" Width="120px"></HeaderStyle>
									<ItemStyle HorizontalAlign="Center"></ItemStyle>
									<ItemTemplate>
										<a href ='FlowReceiver.aspx?FlowID=<%#DataBinder.Eval(Container.DataItem,"DocFlowID")%>'>
											流程接受人 </a>
									</ItemTemplate>
								</asp:TemplateColumn>
								<asp:TemplateColumn HeaderText="文档附件">
									<HeaderStyle HorizontalAlign="Center" Width="100px"></HeaderStyle>
									<ItemStyle HorizontalAlign="Center"></ItemStyle>
									<ItemTemplate>
										<a href ='FlowDocument.aspx?FlowID=<%#DataBinder.Eval(Container.DataItem,"DocFlowID")%>'>
											文档附件 </a>
									</ItemTemplate>
								</asp:TemplateColumn>
								<asp:BoundColumn DataField="MethodName" HeaderText="流程方式">
									<HeaderStyle HorizontalAlign="Center" Width="100px"></HeaderStyle>
									<ItemStyle HorizontalAlign="Center"></ItemStyle>
								</asp:BoundColumn>
								<asp:BoundColumn DataField="FlowDate" HeaderText="建立时间">
									<HeaderStyle HorizontalAlign="Center" Width="120px"></HeaderStyle>
									<ItemStyle HorizontalAlign="Center"></ItemStyle>
								</asp:BoundColumn>
								<asp:TemplateColumn HeaderText="编辑">
									<HeaderStyle HorizontalAlign="Center" Width="40px"></HeaderStyle>
									<ItemStyle HorizontalAlign="Center"></ItemStyle>
									<ItemTemplate>
										<a href ='EditFlow.aspx?FlowID=<%# DataBinder.Eval(Container.DataItem,"DocFlowID") %>'>
											编辑</a>
									</ItemTemplate>
								</asp:TemplateColumn>
								<asp:TemplateColumn HeaderText="删除">
									<HeaderStyle HorizontalAlign="Center" Width="40px"></HeaderStyle>
									<ItemStyle HorizontalAlign="Center"></ItemStyle>
									<ItemTemplate>
										<asp:LinkButton ID="DeleteFlow" Runat="server" CommandName="delete">删除</asp:LinkButton>
									</ItemTemplate>
								</asp:TemplateColumn>
							</Columns>
							<PagerStyle NextPageText="" HorizontalAlign="Right" ForeColor="#003399" BackColor="#E8F4FF"
								Mode="NumericPages"></PagerStyle>
						</asp:DataGrid></TD>
				</TR>
			</TABLE>
		</form>
	</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -