Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i create link temporary download in urlmapping.xml like this:

C#
string s = "<add url='~/Downloading/" + guid + dt.Rows[0]["link"] + "' mappedUrl='~/Downloading/" + dt.Rows[0]["link"] + "'/>";
insertinxmlurlmap(Server.MapPath("urlmapping.xml"), s);
Response.Redirect("~/Downloading/" + guid + dt.Rows[0]["link"]);


in urlmapping.xml:

C#
.............
<add url='~/Downloading/d37fa6bd-dfed-4d06-b85c-64f7674c0d9712.exe' mappedUrl='~/Downloading/12.exe'/>
</urlMappings>

it's work fine in local but i get error in host:
404 not found
how can i solve this????
Posted
Updated 12-May-13 2:52am
v3

1 solution

Sounds like it is a relative path issue. This is one of the most common issue faced in a structured website.

There is a method exposed to handle URL's. Have a read: ResolveUrl[^].

I would suggest you to use this Tip and resolve the path correctly before setting the control/image source: Resolving Paths in a Multi-Folder WebSite[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900