The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
24 views

Server.MapPath() misses one level

We have a .Net application, and we have three exactly same copies of it. One for development on our server, and a test and a live one on our client's server. We have to create pdf files on the server, ...
1
vote
1answer
62 views

HttpContext null in the Signalr Hub file

I have a SignalR hub. When the client disconnects, I want to perform a file operation. To do that, I need to access the Server.MapPath. However, as my Hub class is not an .aspx or a Web Service, ...
1
vote
2answers
184 views

How can I use Server.MapPath inside class library project

I have a web application thet has a number of class library projects. Some example code below. public static class LenderBL { static string LenderXml { get { return "MyPathHere"; } } public ...
0
votes
0answers
34 views

How to get the path of the parent deploy folder

My application needs files outside Deploy folder And I would like to know how to set The Path with Server.MapPath(""). This is not a valid solution for me : var FullTempPath ="C:\inetpub\TempFiles" ; ...
0
votes
2answers
174 views

How to give path of a folder in server to save an image?

Here I'm trying to store an image into two applications( both published on server). This is my code to save the image : string path = Server.MapPath("/Images/Landing/bottom_banner/"); ...
0
votes
1answer
175 views

unable to access files on a different physical drive from asp.net website

My website is published under c:\inetpub\wwwroot folder and I have some large text files on D: drive that I need to access. Let's say the exact location is D:\Test\test.txt. When my website runs it ...
0
votes
1answer
84 views

Server.MapPath not work

I'm developing WebSiteProject with asp.net. Server.MapPath method not work but i don't get an error when upload data. I am checking specified folder but it's empty. My code: ...
0
votes
2answers
94 views

Server.mappath (NOT) and domain folder outside the webspace

It is possible to connect to a MS-Access mdb that is sitting outside of IIS on a regular domain folder? We have a company-wide share (S:) and am trying to do a quick a dirty connection to an mdb in a ...
0
votes
1answer
260 views

ASP.NET MVC Server.MapPath giving full path in Internet Explorer

I am uploading a file with var filename = Server.MapPath(Path.Combine("~/Content/UserContent", Path.ChangeExtension(newName,Path.GetExtension(attachments.FileName)))); attachments.SaveAs(filename); ...
0
votes
0answers
137 views

System.Web.HttpServerUtility.MapPath(String path)

I am using System.IO.File.Exists(Server.MapPath(path)) in my code. Some time when a character (:) colon is coming then Server.MapPath is throwing an exception that System.Web.HttpException: ...
0
votes
2answers
117 views

Server.MapPath gives error with UNC

Here is my directory to my server (permissions are good): string ServerPath = ("\\\\servername\\Public\\Intranet2007Docs"); Here I am accessing it: DirectoryInfo directory = new ...
0
votes
2answers
461 views

Write a Server.MapPath in the web.config file?

Hi there i'm trying to write log for my live website and am having problems with my paths, I need to use the method Server.MapPath but i need it done in my web.config. How would i go about this? The ...
0
votes
0answers
91 views

Server.MapPath vs Request.MapPath

Can someone please explain the difference between Server.MapPath and Request.MapPath and usage scenarios for the two ?
1
vote
1answer
190 views

Server.MapPath and window.open()

I'm actually working on an app that provides the possibility to the users to upload the files they wish. Those files should also be visualizable once uploaded. In order to do that I'm trying to get ...
2
votes
6answers
239 views

UPDATE: Copy file from serverA to serverB

Okay just spoke to our server admin and both servers have all permissions set. Now I get an error: The network path was not found. I gave it dummy server names for this demo am I using the wrong ...
3
votes
2answers
134 views

Server.MapPath issue?

So I am reading a book about asp.net security. and one of the sections there was : how to prevent directory traversal filename ( hacked filenames). so the line of code was : string fullPath = ...
0
votes
2answers
495 views

Use Server.MapPath to load external files

I want to load an XML file which is in D: drive. This is what I used doc.Load(System.Web.HttpContext.Current.Server.MapPath("/D:/Employee.xml")); But it gives me an error whenever I try to run my ...
-1
votes
3answers
130 views

Server.MapPath problems

My problem is that I just can't seem to get the actual file of my mapPath in my foreeach loop. foreach (DataRow item in objKat.getProd().Rows) { ddlImage.Items.Add(new ...
2
votes
1answer
2k views

ASP.NET MVC 4: Use Server.MapPath in Business Layer

My business layer creates files and needs to save them in the App_Data folder of my asp.net mvc 4 web frontend. I could use Server.MapPath in the business layer to get the physical path of the ...
0
votes
1answer
201 views

how save file on server using HostingEnvironment.MapPath()

in this code iam trying to save text document on server / wwwroot folder. nothing happens :(! if i am working on localhost and doing the same routine like this, everything works fine and i can save ...
5
votes
3answers
771 views

Server.MapPath and spaces

I noticed something weird in Server.MapPath(). If I have a folder with a space at the end I get: HttpException: Failed to map the path. This works fine: ...
1
vote
2answers
2k views

Cannot use Server.MapPath

What I must do to make Server.MapPath work? I have using System.Web what else? When I type Server there is no quick result option (intelli-sense) for Server. Any help?
6
votes
3answers
3k views

An object reference is required for the non-static field, method, or property 'System.Web.UI.Page.Server.get'

So I have two functions and I'm getting an interesting problem. Essentially I'm aiming to make my code more portable in an easily includeable cs file. Here's said cs file: namespace basicFunctions { ...
0
votes
4answers
222 views

how to upload excel with duplicate name

how to upload excel file with duplicate name file but its don't do overwrite the previous name file. So if i upload the file with same name it will saving like windows do. ex. firstly i upload excel ...
0
votes
1answer
489 views

Server.MapPath in Global.asax

In Application_Start event in global.asax.cs, I have added some initialization code. This code is run in a spawned thread (created using new Thread()). The initialization code uses Server.MapPath to ...
0
votes
3answers
1k views

Server.MapPath in ASP.Net

I have developed a Web Application using ASP.Net with Microsoft Access as database. Now i have connected to the database using OleDB connection. The problem is when i give the database source in ...
0
votes
4answers
2k views

Virtual Path in ASP.NET

I am using this code for my LinkButton to download a file when you click on it. Recently i got this problem, i need a virtual path . I would like to redirect to C:\inetpub\wwwroot string filepath = ...
0
votes
1answer
260 views

Accessing image from other server

I have image file placed on the one server and application on other server. I want to access that image, below code I have written: On default.aspx, I have <asp:Image ID="Image1" runat="server" ...
9
votes
3answers
9k views

Using Server.Mappath in MVC3

I have the code string xsltPath = System.Web.HttpContext.Current.Server.MapPath(@"App_Data") + "\\" + TransformFileName It returns C:\inetpub\wwwroot\websiteName\SERVICENAME\App_Data\FileName.xsl ...
1
vote
2answers
2k views

Server.MapPath() not getting the path needed

I have a asp.net website that has the following directory: C:\Users\Desktop\Testing\src\website I have another folder called "files" that is here: C:\Users\Desktop\Testing\src\files from inside ...
0
votes
1answer
341 views

Accessing file in main domain folder from subdomain app

I have a web app in a subdomain, where I want to uptain access to a file located in the main domain. Is that possible? HttpContext.Current.Server.MapPath("../www/file.xml")); Where "www" in the ...
0
votes
1answer
679 views

How to read a relative web path with Server.MapPath with space character in filename or path in C#

What i get is src = Request.QueryString["imgsrc"];//src = "images/file 15.jpeg"; System.Drawing.Image image = System.Drawing.Image.FromFile(Server.MapPath(src)); the second line returns ...
0
votes
2answers
413 views

Deleting Dynamically Populated images from a Directory (NOT GridView) ASP.NET (VB)

The code below displays a thumbnail of each image in a specific server directory and when I click on the image it pops up a nice full sized picture. It works perfectly. I would however, like to be ...
3
votes
5answers
2k views

Server.MapPath throws error when using web image cropping library

I have an image stored on server at location: C:\inetpub\wwwroot\imageupload\images in my code i want to use an image from folder images so i am trying as follows: ...
1
vote
1answer
408 views

how to map a path in remote server

I have to manage the attachment in a file server. So I mapped the file server to local e: driver, and point to it directly in my program. It works fine in my working machine, but reports can not find ...
0
votes
1answer
252 views

Is there a universal MapPath function for both client-side and server-side apps?

What is the universal MapPath equivalent to the below? Universal, meaning, that I could use it in both client-side and server-side .NET apps, not just in server-side apps. ...
1
vote
2answers
126 views

vb.net - Inserting number of files named XX into a string

Have the following code which creates a table of all the images in a folder. VB: Sub Page_Load(sender as Object, e as EventArgs) If Not Page.IsPostBack then Dim dirInfo as New ...
4
votes
1answer
6k views

ASP.NET: How to get the virtual path of a file from a generic handler?

How can i resolve a virtual path to a file into a path, suitable for the browser, from within a generic .ashx handler? e.g. i want to convert: ~/asp/ClockState.aspx into ...
0
votes
1answer
854 views

System.UnauthorizedAccessException loading file from Disk

Really weird problem loading a file from disk: string path = HttpContext.Current.Server.MapPath("~/Datasets/blob.xml"); FileStream stream = new FileStream(path, FileMode.Open); Throws exception: ...
1
vote
1answer
3k views

How to use Server.MapPath when HTTPContext .Current is Nothing

I have some code that works fine when I need to delete some image files from a directory on my web server: Dim ImageURL As String = dsImages.Tables(0).Rows(iImgRow).Item("ImageURL") Dim physicalName ...
2
votes
2answers
13k views

Image URL is correct but image not showing

I have a website on GoDaddy. All permissions are set correctly and the image DOES exist. However when the page loads the image for the item selected does not show. Here is my code imagepath = ...
0
votes
1answer
584 views

ASP.Net ImageUrl setting from GoDaddy

I have a website that is a subdomain within one of my GoDaddy accounts. within this website I have an image folder with images. Within my ASP.Net code I am trying to dynamically load an image into an ...
2
votes
1answer
2k views

Server.MapPath gives wrong path, exception “The given path's format is not supported” when running on IIS server?

Currently, I'm using the codes below to save a file to a directory on my website. //save the file to the server String savePath = Server.MapPath("..\\temp\\") + file; ...
22
votes
1answer
11k views

Using Server.MapPath() inside a static field in ASP.NET MVC

I'm building an ASP.NET MVC site where I'm using Lucene.Net for search queries. I asked a question here about how to properly structure Lucene.Net usage in an ASP.NET MVC application and was told that ...
0
votes
1answer
240 views

How to use server path to access a file for attachment

I am trying to access a file on another server from my application. Out of application, I am able to access the files from windows explorer, but when I am using the same path in my application, I am ...
0
votes
1answer
2k views

Server.MapPath not working

I'm trying to access files in a virtual directory I created in IIS for the first time but am getting weird results. OS: Windows XP Pro IIS: 5.1 Development Platform: Visual Studio 2008 Language: ...
2
votes
1answer
2k views

Does Server.MapPath behaves differently in local machine and server machine?

I have had a real nightmare with Server.MapPath(). When I call Server.MapPath("~") in my application that is running in ASP.NET Development Server it returns root directory that ends in a back slash ...
0
votes
1answer
129 views

loading an xml in web apps directory from a library dll

my web application has an xml file here: /files/xml/test.xml I need to load a XDocument from within a class library project, how will I reference the xml? I don't want to pass any path parameters ...
14
votes
2answers
18k views

Map the physical file path in asp.net mvc

I am trying to read an XSLT file from disk in my ASP.Net MVC controller. What I am doing is the following: string filepath = HttpContext.Request.PhysicalApplicationPath; filepath += ...
1
vote
3answers
1k views

Calling WebService From Same Project

I'm trying to call an asp.net webservice from the same project it's in: [MethodImpl(MethodImplOptions.Synchronized)] public static void OnFileCreated(object source, FileSystemEventArgs e) { ...

1 2