49 lines
2.6 KiB
Plaintext
49 lines
2.6 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ATTACHMENT.ascx.cs" Inherits="SuperMap.RealEstate.Personnel.Compents.Attachment.ATTACHMENT" %>
|
|
<%@ Register Assembly="RealEstate.Web" Namespace="SuperMap.RealEstate.Web.UI.WebControls" TagPrefix="smwc" %>
|
|
<link href="/Personnel/Resources/v1_0/uploadify/uploadify.css" rel="stylesheet" />
|
|
<script type="text/javascript" src="/Personnel/Resources/v1_0/uploadify/jquery.uploadify.min.js"></script>
|
|
<script type="text/javascript" src="/Personnel/Resources/v1_0/uploadify/upload.js"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
if ('<%=_ModifyType%>' == "0") {
|
|
$("#upload_files_proinst").hide();
|
|
}
|
|
});
|
|
</script>
|
|
<ul class="ListItem Col2">
|
|
<li>
|
|
<div id="queue"></div>
|
|
<input id="upload_files_proinst" name="upload_files_proinst" type="file" multiple="true" />
|
|
<input type="hidden" value="<%=this.PERSONNELPROINST_ID.Text %>" id="hidden_relation_id_reg" />
|
|
<input type="hidden" value="<%=this.STAFF_ID.Text %>" id="hidden_staff_id_reg" />
|
|
<input type="hidden" value="<%=this.PROINST_ID.Text %>" id="hidden_proinst_id_reg" />
|
|
<input type="hidden" value="<%=this.CallBackButton1.ClientID %>" id="hidden_proinst_id_button" />
|
|
<div style="display: none;">
|
|
<asp:Button ID="CallBackButton1" runat="server" CausesValidation="false" Text="保存" CssClass="ButtonNew" OnClick="CallBackButton1_Click" />
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="ListItem" style="margin-top: 20px;" id="filecollection_Content">
|
|
<asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="Repeater1_ItemDataBound">
|
|
<ItemTemplate>
|
|
<li style="width: 100%;">
|
|
<asp:LinkButton ID="LinkButton" runat="server" OnClick="LinkButton_Click" CssClass="ButtonNew margin100">
|
|
<span>测试文本</span>
|
|
</asp:LinkButton>
|
|
<asp:LinkButton ID="DelButton" runat="server" OnClick="DelButton_Click"></asp:LinkButton>
|
|
</li>
|
|
</ItemTemplate>
|
|
</asp:Repeater>
|
|
</ul>
|
|
<ul style="display: none;">
|
|
<li>
|
|
<smwc:textboxex id="PERSONNELPROINST_ID" width="100%" runat="server" captiontext="流程内码:" validtype="Integer"></smwc:textboxex>
|
|
</li>
|
|
<li>
|
|
<smwc:textboxex id="PROINST_ID" width="100%" runat="server" captiontext="内码:" validtype="Integer" readonly="True"></smwc:textboxex>
|
|
</li>
|
|
<li>
|
|
<smwc:textboxex id="STAFF_ID" width="100%" runat="server" captiontext="操作员内码:" validtype="Integer"></smwc:textboxex>
|
|
</li>
|
|
</ul>
|