Click here to Skip to main content
16,018,802 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i did all things but my code is not running well please help me out why it showing error.

aspx page

ASP.NET
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="vv" %>
<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
      <vv:ToolkitScriptManager ID="ToolkitScriptManager1"  runat="server">
       </vv:ToolkitScriptManager>
        <vv:AjaxFileUpload id="ajaxUpload1"
        önUploadComplete="ajaxUpload1_OnUploadComplete"
       ThrobberID="MyThrobber"
        runat="server" />
 
       <asp:Image
           id="MyThrobber"
           ImageUrl="~/Images/indicator3.gif"
           Style="display:None"
           runat="server" />
    </div>
 
    </form>
</body>
</html>


cs file

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;


public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void ajaxUpload1_OnUploadComplete(object sender, AjaxControlToolkit.AjaxFileUploadEventArgs e)
    {

        string filePath = "~/Uploads/" + e.FileName.ToString();


        ajaxUpload1.SaveAs(MapPath(filePath));
    }



}
Posted
Comments
[no name] 15-Jun-13 7:43am    
Are we supposed to guess which error you are getting out of all of the errors that it could be?
[no name] 15-Jun-13 7:56am    
its not compile error. ajaxUpload1_OnUploadComplete method not invoked.
Nick Ginis 18-Jun-13 19:05pm    
Is the o in önUploadComplete how it appears in your code? Could be the issue.
mahakaal 20-Jun-13 0:39am    
have your solved this problem or still working on it.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900