For example, I have:
string AbsImgURL = "~/MyStuff/Images/MsgBoxIcon/MyImg.jpg";
I want it to be:
string AbsImgURL = "../../MyStuff/Images/MsgBoxIcon/MyImg.jpg"
(Because I am currently at the page "~/UI/Pages/Default.aspx", which is two level deep from the root)
Thanks guy, I have finally get it worked by using VirtualPathUtility.MakeRelative. The code is below: