forked from oec2003/jQueryUploadifySample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpload.aspx
More file actions
34 lines (26 loc) · 1.03 KB
/
Copy pathUpload.aspx
File metadata and controls
34 lines (26 loc) · 1.03 KB
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Upload.aspx.cs" Inherits="jQueryUploadify.WebForm.Sample.Upload" %>
<!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>
<link href="scripts/uploadify/uploadify.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="scripts/jquery-1.8.2.js"></script>
<script type="text/javascript" src="scripts/uploadify/jquery.uploadify.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(function () {
$("#uploadify").uploadify({
height: 30,
swf: 'scripts/uploadify/uploadify.swf',
uploader: 'UploadHandler.ashx',
width: 120
});
});
});
</script>
</head>
<body>
<input type="file" name="uploadify" id="uploadify" />
</body>
</html>