Sir ,I want to save three images path  in table also upload images in folder,how it is possible?
[Using ajax file upload control]
table columns are imagepath1,imagepath2,imagepath3.
Ref:
http://www.dotnetfox.com/articles/ajax-fileupload-or-multiple-fileupload-with-progress-example-in-Asp-Net-1081.aspx
HTML
 <asp:AjaxFileUpload ID="AjaxFileUpload1" runat="server" AllowedFileTypes="jpg,jpeg,png,gif"
                            MaximumNumberOfFiles="3" OnUploadComplete="File_Upload"
                            Width="500px" />
 C#
protected void File_Upload(object sender, AjaxFileUploadEventArgs e)
{
        string filename = e.FileName;
        string strDestPath = Server.MapPath("~/Documents/");
        AjaxFileUpload1.SaveAs(@strDestPath + filename);       
}