This article describes the method of implementing the C# image upload effect. Share it for your reference. The details are as follows:
<%@ Page Title="" Language="C#" MasterPageFile="~/" AutoEventWireup="true" CodeFile="" Inherits="Default" %> <asp:Content ID="cHead" ContentPlaceHolderID="head" runat="Server"> </asp:Content> <asp:Content ID="cBody" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server"> <asp:Literal runat="server" ID="ltrHTML"></asp:Literal> <script type="text/javascript"> $().ready(function () { var counter = 0; $(function () { var btnUpload = $('#addImage'); new AjaxUpload(btnUpload, { action: '', name: 'uploadfile', onSubmit: function (file, ext) { $("#loading").show(); }, onComplete: function (file, response) { var uploadedfile = "UserData/" + file; $("#uploadImageWrapper").append("<div class='imageContainer offset' id='current" + counter + "'><img height='65px' width='65px' src='" + uploadedfile + "' alt='" + uploadedfile + "'/><div id='close" + counter + "' class='close' title='" + uploadedfile + "' onclick='RemoveImage(this);'><a ></a></div></div>"); $('#current' + counter).fadeIn('slow', function () { $("#loading").hide(); $("#message").show(); $("#message").html("Added successfully!"); $("#message").fadeOut(3000); counter++; }); } }); }); }); function RemoveImage(_this) { var counter = _this.('close', ''); $("#loading").show(); $.ajax({ type: "POST", url: "", data: "filename=" + _this.getAttribute('title'), success: function (msg) { $('#current' + counter).fadeOut('slow', function () { $("#loading").hide(); $("#message").show(); $("#message").html("Removed successfully!"); $("#message").fadeOut(3000); }); } }); } </script> <table cellpadding="0" cellspacing="0"> <tr class="header"> <td style="padding-left: 5px;"> <a href="javascript:;">Add Image</a> </td> </tr> <tr class="body"> <td valign="top"> <div > </div> </td> </tr> <tr class="footer"> <td> <div style="display: none"> <table cellpadding="0" cellspacing="0"> <tr> <td> <img width="20" height="20" src="Images/" alt="Loading..." /> </td> <td> Please wait... </td> </tr> </table> </div> <div style="color: Green"> </div> </td> </tr> </table> </asp:Content>
I hope this article will be helpful to everyone's C# programming.