Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
18k views

ASP.NET absolute path back to web-relative path

If I have managed to locate and verify the existence of a file using Server.MapPath and I now want to send the user directly to that file, what is the fastest way to convert that absolute path back ...
2
votes
2answers
5k views

Classic ASP Server.MapPath() doesn't work as expected in global.asa

In Classic ASP, Server.MapPath() doesn't always work properly in the Application_OnStart event within global.asa. I have an ASP page at "\testfolder\test.asp" within a virtual root, I have an XSLT ...
0
votes
1answer
69 views

WCF getting the phisical path of URL adress

I'm new at WCF and i'm trying to create a service, it needs to convert url to server path. For example: Gets -> "www.sample.com/client1" Returns -> "c://samplefolder/sampleproject/client1" I'm trying ...
0
votes
2answers
238 views

Save file in a folder above the site files

My host has the following structure: /Web -> Where is the content of the site /Data -> Folder permissions to read and write How do I upload a file to the Data folder? The code below does not work, ...
0
votes
1answer
75 views

Make 'File Upload' optional in Upload Form - .NET

Right now, I'm using this to allow a file to be moved to our server: filUpload.PostedFile.SaveAs(Server.MapPath("~/Images/" + filUpload.FileName)); However when I don't upload a file, it gives me an ...
0
votes
1answer
338 views

Server.MapPath not accepting UNC URL

I'm having a bit of trouble loading an XML file with ASP. This is the location of the XML file (it's a UNC url): ...
0
votes
1answer
263 views

How to MapPath in an IIS7 Rewrite Provider?

I am using the rather excellent IIS7 Rewrite module (V2), and want to create a custom RewriteProvider that rewrites differently depeneding on whether the physical file exists. I have successfully ...
0
votes
1answer
43 views

Writing viewing stats to XML file. Possible problems with losing data count?

Hello I have created XML which holds codes for properties and number of page viewings for that code: <?xml version="1.0" encoding="utf-8"?> <data> <nehnutelnost ...
0
votes
2answers
2k views

Can't save file on webserver: System.UnauthorizedAccessException

I can't save a file on my webserver with FileUpload.SaveAs() or with File.WriteAllText(). The folder I save in is CHMOD 666. My code is this: File.WriteAllText(MapPath(".") + "\\Ads\\test.jpg", ...