Tagged Questions
The server.mappath tag has no wiki summary.
17
votes
4answers
5k views
How can I use Server.MapPath() from global.asax?
I need to use Server.MapPath() to combine some files path that I store in the web.config.
However, since Server.MapPath() relies on the current HttpContext (I think), I am unable to do this. When ...
11
votes
1answer
2k 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 ...
7
votes
4answers
2k views
C# Unit Testing: Testing a method that uses MapPath
First of all, I am aware that this question is dangerously close to:
http://stackoverflow.com/questions/1231860/how-to-mappath-in-a-unit-test-in-c
I'm hoping however, that it has a different ...
6
votes
3answers
10k views
Server.Mappath in C# classlibrary
How can i use the server.mappath method in a C# class library class ,which acts as my BusinessLayer for My ASP.NET WEbsite
4
votes
5answers
3k views
In ASP.NET how you get the physcial file path when HttpContext.Current is NULL?
I'm working with DotNetNuke's scheduler to schedule tasks and I'm looking to get the physical file path of a email template that I created. The problem is that HttpContext is NULL because the ...
3
votes
3answers
545 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
...
3
votes
5answers
466 views
Problem using Server.MapPath
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:
...
2
votes
1answer
655 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;
...
2
votes
1answer
566 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 ...
2
votes
2answers
5k 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 += ...
2
votes
4answers
6k views
Get virtual path for a full path in asp classic
How can I get the virtual path for a full path in ASP classic. Note that the full path may be under a virtual directory and therefore the simplistic
virtPath = Replace(fullPath, ...
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 ...
1
vote
1answer
44 views
need assistance with server.mappath()
I need to attach a file invoice.pdf in email stored at location:
C:\Documents and Settings\user\My Documents\Visual Studio 2010\Projects\InvoiceSearch\InvoiceSearchTool\Content\reports
if i use ...
1
vote
1answer
224 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 ...
1
vote
2answers
77 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 ...
1
vote
1answer
1k 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
...
1
vote
1answer
919 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 ...
1
vote
2answers
2k 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 = ...
1
vote
3answers
682 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
vote
2answers
263 views
Using MapPath from a worker thread
I have a WCF service method that's running in a worker thread I spin from another method. I need to map a relative service app path ("~/Templates/a.template") to the physical path ...
1
vote
3answers
754 views
Server.MapPath()
I want to use Server.MapPath() method im order to map a virtual directory
I created to its physical path.
The thing is that the .net environment doesn't recognize Server.MapPath().
Google told me ...
0
votes
1answer
42 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
87 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
82 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
49 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" ...
0
votes
2answers
103 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
79 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
114 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
200 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 ...
0
votes
1answer
85 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.
...
0
votes
1answer
273 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:
...
0
votes
1answer
332 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 ...
0
votes
1answer
117 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
931 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: ...
0
votes
1answer
73 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 ...
0
votes
2answers
409 views
Imported system.web, I don't see server.mapPath?
I imported system.web into my class lib project.
Trying to find:
system.web.httpserverutility.server.mappath
But I dont' get the method in intellisense?
It is a .net 2.0 build.
0
votes
2answers
1k views
Getting XslCompiledTransform.Load to load a file in a SharePoint List
I'm having difficulties getting XslCompiledTransform.Load method to take a server path. I googled around and found that I need to do something like:
...
0
votes
3answers
182 views
System.Web.UI not giving me the MapPath
I am working on a mailSender Class. I can't use the Server.MapPath method from the System.Web.UI Namespace. What reference should i set to make this work? I have referenced to the System / System.Web ...
0
votes
1answer
263 views
What is wrong with this file path?
I have two folders called CSVLoad and Forms... I have an aspx page inside forms folder which has a fileupload control. I save my uploaded file to my CSVLoad folder i gave the following path
...
0
votes
3answers
1k views
ImageUrl trying to display an image outside of project root
I am working with two different web sites in asp.net. In the first project i upload some images to a specific folder under the project root and save just the filename in the database, now i am trying ...