Click here to Skip to main content
15,894,047 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Dear Friends,

You will be very much thankful if you solve the below problem.
Posted
Updated 15-Mar-13 1:28am
v2
Comments
You will be very much thankful if you solve the below problem.
Are you sure ?
Anshulkumar608 15-Mar-13 7:41am    
ya ofcours!!!
Sandeep Mewara 15-Mar-13 7:50am    
It does not work like this here.

Here is what is expected of enquirers:
1. TRY first what you want to do! You may find that it's not that hard.
2. Formulate what was done by you that looks like an issue/not working.

Try them and tell if you face issues.
Members will be more than happy to help like this.

1 solution

C#


C#
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;
using System.IO;
using BU_AppCode;
using System.Data.SqlClient;
public partial class PopUp : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e) { }
    protected void btnSave_Click(object sender, EventArgs e)
    {     
        string SavePath2 = Server.MapPath("~/BU_Web1/UploadedFile/Einwilligung/");
        string fileNameList = "";
        if (fp_Makler.HasFile)
        {
            string SavePath1 = Server.MapPath("~/BU_Web1/UploadedFile/Maklerauftrag/");
            lb_Message.Text = "";
            string FileName1 = Path.GetFileNameWithoutExtension(fp_Makler.FileName);
            string FileExtension1 = Path.GetExtension(fp_Makler.FileName);
            float FileSize1 = fp_Makler.PostedFile.ContentLength;
            FileSize1 = FileSize1 / 1024;
            string uniqueName1 = "YourFileName";         
            SavePath1 = SavePath1 + uniqueName1 + FileExtension1;
            if (FileSize1 < 15360) //&& FileSize2 < 15360) //If file size less than 15 MB, Then contine it
            {
                fp_Makler.SaveAs(SavePath1);
                fileNameList += "," + uniqueName1 + FileExtension1;
            }

            else
            {
                lb_Message.Text = FileName1 + FileExtension1 + " Datei ist zu groß";
            }

        }
 if (fileNameList != "")
        {
            SqlCommand cmd = new SqlCommand();
            cmd.CommandText = "SP_Fr_FileUpDate";
            SqlParameterCollection paramColl = cmd.Parameters;
            paramColl.AddWithValue("@fileNameList", fileNameList.Substring(1));
            paramColl.AddWithValue("@Kundennummer", Request.QueryString["Kundennummer"]);
            try
            {
                BU_UtilDB.ExecuteProcedure(cmd);
            }
            catch (Exception ex)
            {
              
            }
            Page.RegisterStartupScript("", "<script type='text/javascript'>window.opener.location.href='StatusBU.aspx';window.close()</script>");

        }
        else
        {
            lb_Message.Text = "Es wurde keine Datei zum Upload ausgewählt";
        }
}
}
 
Share this answer
 

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