市长热线演示版

shangchuan.aspx 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="shangchuan.aspx.cs" Inherits="HySoft.BaseCallCenter.Web.workordermanage.workorder.shangchuan" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head id="Head1" runat="server">
  5. <title></title>
  6. <script src="../../scripts/jquery/jquery.min.js" type="text/javascript"></script>
  7. <link href="../../scripts/jquery/uploadify.css" rel="stylesheet" type="text/css" />
  8. <script type="text/javascript" src="../../scripts/jquery/swfobject.js"></script>
  9. <script type="text/javascript" src="../../scripts/jquery/jquery.uploadify.min.js"></script>
  10. <script type="text/javascript">
  11. $(document).ready(function () {
  12. $("#uploadify").uploadify({
  13. 'uploader': '../../scripts/jquery/uploadify.swf',
  14. 'script': 'shangchuanAdd.aspx',
  15. 'cancelImg': '../../scripts/jquery/cancel.png',
  16. 'folder': 'shifen',
  17. 'queueID': 'fileQueue',
  18. 'auto': false,
  19. 'multi': true,
  20. // 'buttonImg': '../../../js/1.jpg',
  21. 'sizeLimit': 10240000,
  22. 'onComplete': function (event, queueID, fileObj) {
  23. return false;
  24. }
  25. });
  26. });
  27. </script>
  28. </head>
  29. <body>
  30. <form id="form1" runat="server">
  31. <div>
  32. <input type="file" name="uploadify" id="uploadify" />
  33. <a href="javascript:$('#uploadify').uploadifyUpload()">确定上传</a>
  34. <div id="fileQueue" ></div>
  35. </div>
  36. </form>
  37. </body>
  38. </html>