<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CorporateClientsContractShow.aspx.cs" Inherits="CY.WebForm.Pages.business.CorporateClientsContractShow" %>
|
|
<%-- 合同浏览页面。主要是用来按照以浏览方式 --%>
|
<!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>
|
<script src="./../../js/PictureShow/spotlight.bundle.js"></script>
|
<style type="text/css">
|
|
.textcenter{text-align:center}
|
.horizontal{
|
float:left;
|
border:1px solid black;
|
margin-left:20px;
|
}
|
</style>
|
</head>
|
|
<form id="form1" runat="server">
|
<div class="textcenter">合同预览</div>
|
|
|
<asp:Repeater id="RepClientList" runat="server">
|
<ItemTemplate>
|
<div class="textcenter horizontal" width="100" >
|
<a <%--class="spotlight"--%> title="点击查看原图" href="<%#Eval("FilePath").ToString() %>" target="view_window" >
|
|
<img src="<%#Eval("FilePath").ToString() %>" width="100" height="200" >
|
|
|
</a>
|
<p >第<%#Eval("PageCode")%>页</p>
|
|
</div>
|
</ItemTemplate>
|
|
</asp:Repeater>
|
|
|
</form>
|
|
|
|
|
|
|
</html>
|