Asp.net server absolute path converted to relative URL path

Source: Internet
Author: User
// Convert local paths to relative URLs
Private   String Urlconvertor ( String Imagesurl1)
{
String Tmprootdir = Server. mappath (system. Web. httpcontext. Current. Request. applicationpath. tostring ()); // ObtainProgramRoot directory
String Imagesurl2 = Imagesurl1.replace (tmprootdir, "" ); // Convert to relative path
Imagesurl2 = Imagesurl2.replace ( @" \ " , @" / " );
Return Imagesurl2;
}

//Convert the relative path to the local physical path of the server
Private StringUrlconvertorlocal (StringImagesurl1)
{
StringTmprootdir=Server. mappath

(System. Web. httpcontext. Current. Request. applicationpath. tostring ()); // Get the program root directory
String Imagesurl2 = Tmprootdir + Imagesurl1.replace ( @" / " , @" \ " ); // Convert to absolute path
Return Imagesurl2;
} From: http://apps.hi.baidu.com/share/detail/16488746

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.