Tagged Questions
The virtual-path tag has no wiki summary.
6
votes
2answers
622 views
How to get server path of physical path ?
I want to convert this physical path "C:\bla\bla\Content\Upload\image.jpg" to server path like "/Content/Upload/image.jpg".
How can i do that ?
5
votes
1answer
2k views
How to OpenWebConfiguration with physical path?
I have a win form that creates a site in IIS7.
One function needs to open the web.config file and make a few updates. (connection string, smtp, impersonation)
However I do not have the virtual path, ...
5
votes
2answers
4k views
How do you convert a url to a virtual path in asp.net without manual string parsing?
I've seen similar questions and answers regarding conversions from virtual to absolute and url, but how can I convert a url to a virtual path without manual string parsing?
Example:
I want ...
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, ...
1
vote
2answers
167 views
asp.net - Is my path virtual?
Is there a built-in asp.net method for checking the "virtualness" of a path?
The only way I've been able to do it so far is with the following try block:
public void Foo(String path){
try
{
...
1
vote
1answer
299 views
How can I trick MVC into rendering links based on a different virtual path?
I'm running a bunch of apps on discountasp.net with the subdomain addon. Since with shared hosting I can't have multiple IIS sites, I've also written an HTTP module that allows sites in subfolders to ...
0
votes
1answer
52 views
ASP.NET MVC3 Root-relative path to virtual path in Controller or Model
This sounds like a simple enough question, but can't find the answer for the life of me. How does one convert a root-relative url (~/my/path) to a virtual path (/mywebsite/my/path) in the Controller ...
0
votes
2answers
135 views
ASP.net MVC virtual path
I would like to add a virtual path to my asp.net application. In visual studio there is a setting virtual path I'd like to put a version number as the part of the url of my application.
It was like ...
0
votes
1answer
144 views
Razor Virtual Path issue
The controller is:
public class HomeController : Controller
{
public ActionResult LogOn()
{
return View();
}
[HttpPost]
public ActionResult LogOn(string captcha)
{
...
0
votes
2answers
180 views
ASP.NET: How to get URL of a file?
i want to get the fully qualified url to a resource in ASP.NET.
e.g.:
<LINK rel="shortcut icon" href="<%=GetFaviconPath()%>">
with the code-behind file right now containing:
private ...
0
votes
1answer
93 views
ASP.NET: IsVirtualPath?
Is there a function to determine whether a URI is a valid virtual path? I'm given a string and need to use Server.MapPath() on it without throwing an Exception when the string is not a valid virtual ...