ASP.NET Web Page Not Available

Posted by hahuang65 on Stack Overflow See other posts from Stack Overflow or by hahuang65
Published on 2010-04-05T07:38:25Z Indexed on 2010/04/05 7:43 UTC
Read the original article Hit count: 435

Filed under:
|
|

It's pretty difficult to show code for ASP.NET here, so I will try my best to describe my problem.

I have a FileUploadControl and a Button that calls a function when it's clicked. It seems that the Button function works when there is nothing chosen for my FileUploadControl. However, when there is something chosen in the FileUploadControl (I have selected a file to upload), there is a problem when I click the button. It completely does not matter what the function does (it could just be writing to a label, even when it has nothing to do with the FileUploadControl). The error I get is:

This webpage is not available.

The webpage at http://localhost:2134/UploadMedia/Default.aspx might be temporarily down or it may have moved permanently to a new web address.

I have searched on Google, and people seem to have had problems with this, but different causes from me. They have said that their ASP.NET Development Server port is actually different from their port in the address bar. This is not the case for me.

Also, another problem people have had is with Use Dynamic Ports. I have tried both true and false. I have also tried different ports, and I have always gotten the same error.

This is really driving me crazy because it doesn't matter what the code in the buttonFunction is, it doesn't work as long as there is something in the FileUploadControl. If there is nothing, it seems to work fine.

Here is the code for the ASP.NET Controls:

<asp:FileUpload id="FileUploadControl" runat="server" />
<asp:Button runat="server" id="UploadButton" text="Upload" OnClick="uploadClicked" />
<br /><br />
<asp:Label runat="server" id="StatusLabel" text="Upload status: " />

And this is the code for the button function:

protected void uploadClicked(object sender, EventArgs e)
{
    if (FileUploadControl.HasFile)
    {
        string filename = Path.GetFileName(FileUploadControl.FileName);

        //Check if the entered username already exists in the database.
        String sqlDupStmt = "Select songPath from Songs where songPath ='" + Server.MapPath("~/Uploads/") + filename + "'";
        SqlConnection sqlDupConn = new SqlConnection(@"Data Source = .\SQLEXPRESS; AttachDbFilename = |DataDirectory|\Database.mdf; Integrated Security = True; User Instance = True;");
        SqlCommand sqlDupCmd = new SqlCommand(sqlDupStmt, sqlDupConn);
        sqlDupCmd.Connection.Open();
        SqlDataReader sqlDupReader = sqlDupCmd.ExecuteReader(CommandBehavior.CloseConnection);

        if (sqlDupReader.Read())
        {
            StatusLabel.Text = "Upload status: The file already exists.";
            sqlDupReader.Close();
        }

        else
        {
            sqlDupReader.Close();

            //See "How To Use DPAPI (Machine Store) from ASP.NET" for information about securely storing connection strings.
            String sqlStmt = "Insert into Songs values (@songpath);";
            SqlConnection sqlConn = new SqlConnection(@"Data Source = .\SQLEXPRESS; AttachDbFilename = |DataDirectory|\Database.mdf; Integrated Security = True; User Instance = True; uid=sa; pwd=password;");
            SqlCommand cmd = new SqlCommand(sqlStmt, sqlConn);
            SqlParameter sqlParam = null;

            //Usage of Sql parameters also helps avoid SQL Injection attacks.
            sqlParam = cmd.Parameters.Add("@userName", SqlDbType.VarChar, 150);
            sqlParam.Value = Server.MapPath("~/Uploads/") + filename;

            //Attempt to add the song to the database.
            try
            {
                sqlConn.Open();
                cmd.ExecuteNonQuery();
                FileUploadControl.SaveAs(Server.MapPath("~/Uploads/") + filename);
                songList.Items.Add(filename);
                StatusLabel.Text = "Upload status: File uploaded!";
            }

            catch (Exception ex)
            {
                StatusLabel.Text = "Upload status: The file could not be uploaded. The following error occured: " + ex.Message;
            }

            finally
            {
                sqlConn.Close();
            }
        }
    }
}

But this buttonfunction provides the same results:

protected void uploadClicked(object sender, EventArgs e)
{
    StatusLabel.Text = "FooBar";
}

Has anyone had this problem before, or might know what the cause is?

Thanks!

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about webpage