| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="shangchuan.aspx.cs" Inherits="HySoft.BaseCallCenter.Web.workordermanage.workorder.shangchuan" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head id="Head1" runat="server">
- <title></title>
- <script src="../../scripts/jquery/jquery.min.js" type="text/javascript"></script>
- <link href="../../scripts/jquery/uploadify.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="../../scripts/jquery/swfobject.js"></script>
- <script type="text/javascript" src="../../scripts/jquery/jquery.uploadify.min.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- $("#uploadify").uploadify({
- 'uploader': '../../scripts/jquery/uploadify.swf',
- 'script': 'shangchuanAdd.aspx',
- 'cancelImg': '../../scripts/jquery/cancel.png',
- 'folder': 'shifen',
- 'queueID': 'fileQueue',
- 'auto': false,
- 'multi': true,
- // 'buttonImg': '../../../js/1.jpg',
- 'sizeLimit': 10240000,
- 'onComplete': function (event, queueID, fileObj) {
- return false;
- }
- });
- });
-
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <input type="file" name="uploadify" id="uploadify" />
- <a href="javascript:$('#uploadify').uploadifyUpload()">确定上传</a>
- <div id="fileQueue" ></div>
- </div>
- </form>
- </body>
- </html>
|