c# - how to get the prefect url from html encoded url -
folderpath\0\microsoft%202007\chapter1\images
how can remove %20 url path.
use this
string s = httputility.urldecode(@"folderpath\microsoft%202007\chapter1\images");
folderpath\0\microsoft%202007\chapter1\images
how can remove %20 url path.
use this
string s = httputility.urldecode(@"folderpath\microsoft%202007\chapter1\images");
Comments
Post a Comment