Multiple choice technology web technology How can we get Current Page URL in ASP.NET? Request.Url.FullURL; Request.PageUrl; Request.Url.AbsoluteUri; Request.Page.URL; Reveal answer Fill a bubble to check yourself C Correct answer Explanation Request.Url.AbsoluteUri returns the complete URL including protocol, domain, path, and query string. Request.Url alone gives a Uri object - you must access a property like AbsoluteUri, AbsolutePath, or Host to get the actual string value.