Web Forms :: Unable To Upload Files To The Application?
Mar 5, 2011i am having problem uploading files to the application. When i click on the upload button, it does not upload the already selected file.
View 4 Repliesi am having problem uploading files to the application. When i click on the upload button, it does not upload the already selected file.
View 4 RepliesI was unable to upload files in a medium trust application and caught security exception.
If I change trust level to full it is working fine, but the hosting environment is set to run only medium trust application.
What are the settings to be done prior to upload files in a medium trust application.
i am trying to upload files through the ASP.NET File Upload control.
Every thing is working fine, except for the fact that when i try to upload the file on the server i am getting an error: (probably some authorization exception).
do i need to give some rights to the upload up there on the server. If so then for which account and do i need to restart the server after giving rights?
I am unable to upload even 75MB file ... it seems MS for some good sake is putting a limit of the file. how can I overcome this issue.
View 12 RepliesI am unable to upload files, here is my aspx file
<%@ Page Title="" Language="C#" MasterPageFile="~/Areas/Admin/Views/Shared/AdminSite.Master"
I want upload file without refresh page. I use this [URL] .... it works great but my file size is greater than 10 mb ....
View 1 RepliesHow to upload files from ASP.NET web application to any web server(linux)..
View 2 RepliesI am building a website where i need a page where user can upload large video files, i have created WCF service with streaming but i am calling that WCF service from Button_Click event of web page.
I have used below mentioned article for WCF service creation
WCF Streaming
I have used streaming as it should be efficient and should not be buffered in memory of server.
Now questions
1) I am having doubts that the entire file is uploaded to the web server and then it is transferred to WCF Service server...if this is true then i am not getting advantage of streaming as well as iis and web server will be down very soon if user uploads large file or multiple user are uploading files con currently
2) Is there any other efficient way to do same operation with some other technique
EDIT :
If I am not calling WCF Service method from ASP .Net code in that case also it is transferring bytes to the web server which i have checked with HTTPFox
I have checked above thing with upload control and putting one button on UI whose click event is bound to one method in code behind.
So, still i am having that confusion that how data is transferred
Client Machine - Web Server (ASP .Net Application) - Service Server (WCF Service)
Client Machine - Service Server (WCF Service)
NOTE : If i am putting a debug point on button_click and uploading 10 kb file it hits that in less then 1 sec. but if i am uploading 50 mb file then it is taking time.
I placed code of calling WCF service inside that button_click event
Im using a file uploader to upoad files to a folder used for upload.But the problem is this folder is a linux folder. I have made it a shared folder so that I can access from windows by samba. So, file transfer is successful when I'm using os but when I try to upload something from my websites uploader to this folder, this process is not successful. I have given all permissions to this folder.Don't know whats the problem.I have used both type of slashes for directory but still it is not successful.
View 4 RepliesI want to allow a user to upload several files with one upload action. What is the simplest way to do this?
View 3 Repliesi am using file upload control to upload the files in asp.net with vb.net as code behind. am storing the files in my local drive. my doubt is, how shall i read those file using asp.net application.
View 1 RepliesI am using the File Uploader to upload files. It is working fine. But I receive the page can not be displayed when I try to upload a file>4Mb in size.
View 1 Repliesi am making a module in which i have to uplod a file but unable to make it any one know
View 10 RepliesI've been trying to upload a video file on my local harddrive and it seems it cannot process the upload. The .flv MIME type is already registered on my IIS but still it cannot process upload.
View 2 RepliesI am trying to use the fileupload control to upload data. Everytime i browse the data and click on submit button, the "HasFiles" returns false i have checked like this:
[Code]....
i am working on a assaignment in which i have to save the pics of my web user through fileupload control i am using this code:
<p>Dim ImgFileName As String
Dim fileup As Boolean
If chooseFile.FileName <> "" Then
ImgFileName = chooseFile.FileName.ToString()
chooseFile.SaveAs(Server.MapPath("~imagesusers") & ImgFileName)
End If
</P>
this code is working on local pc but when i use it on my web server (on web which is hosted ) this code is not working what is wrong in it.
I have a requirement where i need to upload mulitple files with one file upload control. I googled and found ajax uploader control but should be paied to use that. Is there any control similar to that which can be get at free of cost or could any one provide me sample code how can it be done.
Actually i have to upload car images and bike images to respective folders say carfolder and bikefolder. I used two fileupload controls one for car and other for bike and one button. when clicked on button the following code executes to upload the files
[Code]....
I'm new in ASP.NET , I finished one website by ASP.NET with Visual basic (2008), It's contains 2 files (Default.aspx & Thanks.aspx). The Default.aspx is main page. Now I want to upload them on server. I already have space on one server.
I did publish web site then the Visual Created one folder is PrecompiledWeb contain other folder with the same project name inside it these files (App_LocalResources , bin ,images , Default , PrecompiledApp , Thanks and web) , I uploaded these files on the server in www folder. but it's is not working if I will enter in the web browser my website name. How I can config the website to work when I will enter my website name like this(www.xxxxx.com).
I am using a upload control to upload files and that works. But I want to see what files I uploaded.
View 2 Repliesi want upload zip and rar file to server and download it and audio and video file also.
View 1 RepliesWe have an ASP.NET 3.5 Web application in which we have faced the below issue:
The application is working fine but suddently at one point application URL prompts for the authentication. When we (the support team) checked the server, we were able to identify that the access was denied for some of the main files (like web.config, default page). When we enabled the access the application started working fine.
How do I allow users to upload files to a subFolder under the root web folder?
1. Display a list of filenames of file type (.doc, .txt, .pdf) on one webpage(ListOfFiles.aspx).
2. Make those filenames hyperlinks so that when clicked on, the file is displayed in the browser.
3. Have another page(Admin.aspx) that allows the user to upload and delete those files residing in that subFolder.
I need to create an upload site to upload large files over 2GB I want ot create a site like [URL]. Once these files get upload i want them to have a link to the file created but the link encrypted. I know there is a limit to http upload. I have used a bunch of the flash upload web apps but are capped at a specfic mb becuase of .net. What options are out there.
View 2 RepliesI have to create a web app (in C#) that's gonna let my users upload their files straight to Amazon S3 (not enough bandwidth on our own server). It looks like the only way i can do that is posting a simple HTML form to Amazon. The problem is that i have to do some work on my server too, like renaming the files, setting up flags on db when file is uploaded, and so on. I really can't see how to do that without uploading files first on our server, which is out of question, so other solution for this? Amazon S3 forum is pretty poor on this topic.
View 2 Repliesi am having a folder which contains 100 files and each file contain the columns separated by the ' |(pipeline)' and similarly that file contain data also.so i need to bulk upload this folder to the ms sqlserver2005 so that automatically these tables with data added in the database so how to do that one? tell me if any store procedure or the any asp.net program is available for that.
View 1 Replies