Please Find the error :

Posted by jagdeep on Stack Overflow See other posts from Stack Overflow or by jagdeep
Published on 2011-01-01T08:23:00Z Indexed on 2011/01/01 8:54 UTC
Read the original article Hit count: 246

Filed under:
|
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

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


    }
    protected void Bttnadd_Click(object sender, EventArgs e)
    {
       FileUpload1.SaveAs(MapPath("~/img//"+DateTime.Now.ToString()+FileUpload1.FileName));

    }
}

Exception Details: System.Web.HttpException: ~/img//1/1/2011 1:47:52 PMWinter.jpg is not a valid virtual path.

© Stack Overflow or respective owner

Related posts about c#

Related posts about file-upload