Hello
understanding web page and file paths
when hosting a website onlie will these file paths below be changed?
(Server.MapPath("~/StyleSheet.css"), true);
(Server.MapPath("/IDCard.aspx") + "?Id=" + id);
to something like this
(Server.MapPath("www.example.com/StyleSheet.css"), true);
(Server.MapPath("www.example.com/IDCard.aspx") + "?Id=" + id);