username@email.com
2025-05-15 6fe02a16e55f17e45a3997171e1b2284d45af25b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<%@ 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>