Please forgive me if I'm not following protocol. I'm relatively new at jQuery.
Apparently I'm not holding my mouth right on the jQuery Multiple file Upload Plugin. It doesn't appear to be responding to a customization of the selected files list. Here is my code:
<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="Upload.aspx.cs" Inherits="Upload" %>
<!
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 runat="server">
<script src="Scripts/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="Scripts/multiple-file-upload/jquery.MultiFile.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(function () { // wait for document to load
$('#fileInput').MultiFile({
STRING: {
file: '<em title="Click to remove" onclick="$(this).parent().prev().click()">$file</em>',
remove: '<img src="http://www.fyneworks.com/@/bin.gif" height="16" width="16" alt="x"/>'
}});});
</script>
<title>
</title>
<style type="text/css">
.style1{width: 100%;border: 1px solid black;}
.style2{width: 300px;background-color: Silver;}
</style>
</head
><body>
<form id="form1" runat="server">
<div>
<br />
<br />
<br />
<table class="style1">
<tr>
<td class="style2">
<asp:Label ID="Label2" runat="server" Font-Italic="True" Text="Select Document Type">
</asp:Label>
</td>
<td>
<asp:DropDownList ID="DropDownList1" runat="server" Width="215px" />
</td>
</tr>
<tr>
<td >
<asp:Label ID="Label1" runat="server" Font-Italic="True" Text="Select Document To Upload">
</asp:Label>
</td>
<td>
<input id="fileInput" runat="server" name="fileInput" type="file" class="multi" />
</td>
</tr>
<tr>
<td class="style2">
<asp:Label ID="Label3" runat="server" Font-Italic="True" Text="Click Submit Button to Upload">
</asp:Label>
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="Submit" OnClick="Button1_Click" Width="217px" />
</td>
</tr>
<tr>
<td class="style2">
<asp:Label ID="Label4" runat="server" Font-Italic="True" Text="Items Uploaded this Session"Visible="False">
</asp:Label>
</td>
<td>
<asp:ListBox ID="lboxUploadedStatus" runat="server" Width="351px">
</asp:ListBox>
</td>
</tr>
</table>
</div>
</form>
</body>
</html
>
Any Ideas?
Thanks in advance