Multiple choice technology web technology

How can we get Current Page URL in ASP.NET?

  1. Request.Url.FullURL;

  2. Request.PageUrl;

  3. Request.Url.AbsoluteUri;

  4. 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.