Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. FileUpload Control getting null in [Ajax.AjaxMethod]

FileUpload Control getting null in [Ajax.AjaxMethod]

Scheduled Pinned Locked Moved ASP.NET
csharpasp-netsysadminhelpworkspace
1 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Offline
    D Offline
    DineshSharmain
    wrote on last edited by
    #1

    Hi Frends I am using the ASP.Net FileUpload control to upload the file and using AjaxMethod to save the file on Server but I am getting the FileUpload as null...... anybody pls help....

    [Ajax.AjaxMethod()]
    public bool VerifyUploadedData()
    {

        try
        {
            if (FileUpload1.HasFile)
            {
                sFileType = System.IO.Path.GetExtension(FileUpload1.FileName);
                sFileType = sFileType.ToLower();
    
                if (sFileType == ".xls")
                {
                    string FilePath= System.Configuration.ConfigurationManager.AppSettings\["FilePath"\].ToString();
                    FilePath = FilePath + FileUpload1.FileName;
                    FileUpload1.SaveAs(Server.MapPath(FilePath));
                 }
          }
    

    Thanks

    Dinesh Sharma

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups