0
votes
0answers
16 views

PHP cURL login to asp site all fine but fails to download file

Having an ASP site I manage to login and browse through any page using PHP cURL with no issue. But when it comes to download some PDF files I get stuck. Doing this on Firefox following Headers are ...
0
votes
1answer
37 views

how can I get image size (w x h) using Stream

I have this code i am using to read uploaded file, but i need to get size of image instead but not sure what code can i use HttpFileCollection collection = _context.Request.Files; for ...
0
votes
1answer
44 views

Why is my ASP Page.Request.Files[] always empty? I've tried all posted fixes

We're 4 guys making a website for our final school project. We need to allow a user to upload a pdf. We're using Visual Studio 2012, and we have a Master page set up, and the whole login-process and ...
-1
votes
0answers
15 views

Drag and drop of files in ASP.NET MVC [closed]

Am looking for Drag and drop of files and outlook email in ASP.NET MVC that can support IE9 (No HTML5),Safari . Thanks, Basavaraj
0
votes
0answers
54 views

AjaxFileUpload inside a Panel not working

Hello I'm having trouble getting the AjaxFileUpload control to work properly. I have it working properly on a different page, using identical code, but not inside of a panel on this page. It ...
0
votes
1answer
30 views

Get the next file name to upload

I have the following C# code (which is about uploading files to the server) for (int i = 0; i < Request.Files.Count-1; i++) { if (Request.ContentLength != 0) ...
1
vote
1answer
26 views

How to Upload file from Client to Sever Without access to Client Directories? ASP.net

Every where I read of being able to "Upload files from the client PC to the Server" but HOW will you do this if you don't have access to the clients directories? How will the client select what ...
0
votes
1answer
79 views

How to Save files with a FileUpload Interface (GUI) to a chosen location in asp.net?

This comes down to simply saving to a specific location in asp.net. Similar to using 'Save as...' in any standard program like Microsoft Word. The GUI I'm looking for is exactly the same as the GUI ...
-2
votes
1answer
79 views

ASP.Net File upload to FTP server [closed]

I want to create a file uploader. User chooses file using website, and the main problem is I have to save that file to ftp server which is another computer... Any suggestions? Any help would be ...
0
votes
1answer
89 views

File.exists() working in localhost but not in IIS 7.5

I have a code in c#(asp.net) in which File.exists() returns a false value when I execute it in IIS 7.5 but returns a true value when I run it in my localhost via visual studio debugging. I've checked ...
1
vote
1answer
52 views

Get the file from a folder by file number in asp.net

I want to get the specific file from the folder depending on its number. For example I want the 3rd file from the folder ASP in c: drive or I want 10th file from the same folder then how can I get ...
0
votes
1answer
64 views

Asp.net how to allow client open file in localhost?

I'm very new to asp.net and also networking. May be this question sound a bit dummy to you. I'm having asp.net project. This is not about internet it's only in LAN. I just want to let client open a ...
1
vote
1answer
79 views

RAD PDF Service Message Worker Thread Unknown Exception

I try to open My PDF through RadPdf control but i get rendering error . i check the event viewer and get the following data : to fix the problem i have to create C:\WINDOWS\TEMP\RadPdfTemp\ and the ...
1
vote
0answers
35 views

How to delete a file from a folder according size and date

Suppose I have 4 files in a folder. 2 files from yesterday (1st file- 1 mb 2nd file- 2mb) and 2 files for today (1st file-5 mb 2nd file- 10 mb). First, I want to check the date for each file and ...
1
vote
2answers
196 views

Displaying Save File Dialog in Asp.net web page

I have a ASP.net page which writes a file to the local disk. I want to present the user a Save File dialog box and allow him to set the path to the folder. I know code like below can be used; ...
-1
votes
4answers
102 views

How to delete everything in a folder with C# [duplicate]

I need a function to clear the entire content of a folder. ASP.Net cannot delete folders if the folder is not empty.
0
votes
2answers
56 views

how to delete files from a folder according to date

private void DeleteFiles() { DirectoryInfo di = new DirectoryInfo("E:\\test"); var files = di.GetFiles(); var maxFile = files.Max(r => r.Length); foreach (FileInfo file in ...
1
vote
1answer
63 views

What am not disposing while creating a iCal file?

In reference to my question Am I doing it right while reading a file? I am using this code to create a iCal file but not sure if I am doing it right or need to dispose anything as getting this error, ...
0
votes
3answers
77 views

Am I doing it right while reading a file?

This code is trying to read a file but giving error, System.IO.IOException: The process cannot access the file 'C:\doc.ics' because it is being used by another process. at ...
1
vote
1answer
176 views

uploaded file content preview

In my asp.net web application i want a third party file content preview tool,by using that tool i will show the uploaded files(like jpg or tiff or xls or pdf or txt or doc) protected void ...
0
votes
0answers
27 views

Close the Copy process in asp.net

I am copying a 500MB file in asp.net. Whenever user closes web application in the middle of the copy, the next time i try to copy it again it is throwing me an error "Access to the path is denied". I ...
0
votes
1answer
129 views

local network get file path but not upload file

I know when uploading files for security reasons the browser will not get directory of file when using a file upload control. But what I am looking for is for the local network user to select a file ...
1
vote
1answer
47 views

How to know what keeps a lock on a file

While trying to read a file from my ASP.NET web application using this method: string strContents; using (StreamReader sr = new StreamReader(strFilePath)) { strContents = sr.ReadToEnd(); } I ...
0
votes
1answer
184 views

The process cannot access the file \App_Data\ASPNETDB.MDF' because it is being used by another process.

When trying to publish our website on Windows Server 2008 R2, we are seeing the following error. Error 4 The process cannot access the file 'C:\Users\Student\Desktop\CSFP ...
-1
votes
2answers
79 views

Opening file from transmit file in new window [closed]

I've created simple pdf download page which has gridview with download buttons. When user clicks on the button, it shows the pdf file in the current window. I want to open in new window that file. Is ...
0
votes
1answer
246 views

ASP.NET File Upload control File.Exists always returns false

In my application I have to let the user upload a file into the system and I have this code: <asp:FileUpload ID="CSVFileUpload" runat="server" CssClass="TextInput" Width="250" /> ...
0
votes
1answer
52 views

File comparison / highlighting differences in asp.net

We need to add a feature in our application which will allow user to compare two versions of files with differences highlighted. This feature has to similar to SVN. Is there any utility/API that we ...
1
vote
1answer
74 views

FTP server-like asp.net web site

This question is kinda tricky. I have a WCF web service for file upload and download process with several parameters. One of our 3th party application have to access this web service like an ftp ...
0
votes
0answers
78 views

Download a signed file to the client side

In ASP.NET, in code behind I am trying to offer to the client side to download a file. Running, I execute the next part of the code (The arrByte is a byte array that has the correct content, it is ...
1
vote
2answers
145 views

Recursive Algorithm

Hey im trying to create a list of names (with extensions) of all files in the directory, and all files within all, but i need to use a recursive algorithm. Im not sure if im on the right track !!! ...
0
votes
1answer
55 views

Download Checked Files in ASP.NET

I'm creating a web page which has DataList. All Items in DataList have Checkboxes front of them. User checks some files, or all files, maybe just one file to download them. How can i make it happen? ...
1
vote
1answer
71 views

Display files on table. ASP.NET

I'm looking for a solution for Displaying Files on table. Like Windows Desktop Icons. The files' location is stored in the Database. So, I need to Get file locations from database and display that ...
1
vote
3answers
70 views

check for a filename and use it in a filepath?

CustomerName is a string that's being populated from a database value. I would like to check if a file exists with that particular name in a directory and, if it does, use it as a file path. For ...
-3
votes
1answer
96 views

ERROR :: Could not find file ASP.net [closed]

I want to read "file11.dat" from any Location on my hard drive, but it is not working. It is followed by error shown below. ERROR :: Could not find file 'C:\Program Files\Common Files\Microsoft ...
0
votes
1answer
36 views

Error coming up when trying to open up file browser

Currently on my website i am trying to get it so that a user can upload an image from their local images. I have followed a tutorial, but when i debug it and try to open up my images folder i get this ...
1
vote
2answers
72 views

How to automatically update a property which contains file last modification date?

I have an entity with datetime property ImageModifiedDate which stores image last modification date. If I change the image can this property be updated automatically somehow? I mean can this property ...
0
votes
1answer
251 views

How to get full file path of FilePathResult file in asp.net mvc 3?

I want to get last modification date of the file that is returned by action method. I think I need a full file path. FilePathResult has property FileName. Does this property return full file path or ...
0
votes
4answers
129 views

ASP.NET Uploading file over 300KB~ makes browser lose connection

I've been running my image-uploading site for about a month now. I haven't touched the script lately and this problem that occurs now never happened before, with even bigger uploads. When uploading a ...
0
votes
3answers
162 views

How can I get a file's last modified time in asp.net?

I need to find the time when the file was last modified in a day. Using the below code I only get the date.. System.IO.File.GetLastWriteTime(Server.MapPath("myFile.txt")).ToString("D"); How to get ...
0
votes
0answers
44 views

Page gets refreshed when downloading the file

The problem I am face is little hard for me to explain. I have scenario where I display aspx pages using object tag. On one of the page which I am showing as object is having file download code. So ...
0
votes
2answers
100 views

When working with paths to server files, when is it necessary to use back or forward slashes (single or double)?

Regarding the following code sample: string baseLocation = HttpContext.Current.Server.MapPath("/"); const string templateName = @"//temp//ExportTemplate.xlsx"; const string generatedLocation = ...
3
votes
1answer
153 views

Image file is being used by another process

I want to delete my image from folder. But it throws "it is being used by another process." Here is my code: fuProductImage.SaveAs(fileFolderPathTemp + fuProductImage.FileName); Bitmap orgImage = ...
1
vote
2answers
355 views

System.IO.FileNotFoundException encountered while file uploading using FileUpload control

I have following code that I am using to upload an image to my website. The image is first uploaded to a temporary folder then it get resized after that the new image is uploaded to main image folder. ...
0
votes
1answer
368 views

Send ExcelPackage file to user

I want to build ExcelPackage file on server side and than send allow user to download it. Here is my code for file creating: private byte[] ExcelFileCreate() { using (var ...
1
vote
1answer
254 views

Allow user to choose file path where to save file

I am using EPPlus to create excel files and provide them with data. And I want to allow user to select path and name for the file that will be created. File should be stored on client computer. I ...
4
votes
1answer
56 views

Saving long detail in DB or in file?

Developing an asp.net site on .NET Framework 4.0 and SQL SERVER 2008. When my admin member saves detail about project from HTMLEditorExtender where do i save it? Can i save this in Database? ...
1
vote
1answer
320 views

How to read file from zip folder without extracting in asp.net 2 using C#

I want to read a file from a zip folder in Asp.net 2.0 using C# . actually i want something like this : using (ZipFile zip = ZipFile.Open(@"E:\MyZipFolder.ZIP", FileAccess.Read)) { // Read the ...
1
vote
4answers
95 views

If I create a file in Codebehind where does the physical file acually exist?

protected void Page_Load(object sender, EventArgs e) { System.IO.File.WriteAllText(@"C:\CallInformation.txt", "Some data"); } is CallInformation.txt on the Server? Or the ...
0
votes
0answers
357 views

ASP File Uploader Resize Photos durning upload?

I have found this code from the FreeASPUploader website. It doest everything that I need it to do from the iPhone 6.0.1. The iphone opens the page within a FileMaker Go Database on the iphone and I am ...
1
vote
3answers
236 views

File.Move / File.Copy uses Network Interface Card (NIC)? [closed]

Does File.Move / File.Copy uses NIC to move files from one computer to another? If not, how could I program in C# to use NIC to transfer files from one computer to another?

1 2 3 4 5 8