File Upload
-
I have a text file(which is in different server) to be uploaded to database table. When we browse the file, and click upload button, it should redirect to other aspx page and from where the path of the file will be sent to a procedure to insert the values in the text file to a table. But when I select a file and click the upload button its giving "Page cannot be Displayed" error. My code is like this: Try Dim inputFile As New FileInfo(txtfilePath.PostedFile.FileName) Try If (inputFile.Length > 1) Then lblStatus.Text = "File is empty" Else Response.Redirect("Form2.aspx?file=" & HttpUtility.UrlPathEncode(txtfilePath.PostedFile.FileName)) End If Catch ex As Exception lblStatus.Text = ex.Message End Try Catch ex As Exception lblStatus.Text = "File doesn't exist or is inaccessible" End Try When I click upload button its saying page cannot be displayed. Please if anyone can help me for fixing this, I'll be thankful. Thank you. Vasini
-
I have a text file(which is in different server) to be uploaded to database table. When we browse the file, and click upload button, it should redirect to other aspx page and from where the path of the file will be sent to a procedure to insert the values in the text file to a table. But when I select a file and click the upload button its giving "Page cannot be Displayed" error. My code is like this: Try Dim inputFile As New FileInfo(txtfilePath.PostedFile.FileName) Try If (inputFile.Length > 1) Then lblStatus.Text = "File is empty" Else Response.Redirect("Form2.aspx?file=" & HttpUtility.UrlPathEncode(txtfilePath.PostedFile.FileName)) End If Catch ex As Exception lblStatus.Text = ex.Message End Try Catch ex As Exception lblStatus.Text = "File doesn't exist or is inaccessible" End Try When I click upload button its saying page cannot be displayed. Please if anyone can help me for fixing this, I'll be thankful. Thank you. Vasini
Plz could u confirmed, is it working fine for local machine files. If yes then you first save the file in locat system when upload the file from different server, then redirect the page with local file path. If no then plz check before redirect first sure your Provided URL is write or wrong.
Parwej Ahamad g_parwez@rediffmail.com
-
Plz could u confirmed, is it working fine for local machine files. If yes then you first save the file in locat system when upload the file from different server, then redirect the page with local file path. If no then plz check before redirect first sure your Provided URL is write or wrong.
Parwej Ahamad g_parwez@rediffmail.com