How to get current page URL in MVC 3

asp.net, asp.net-mvc, c#, razor

Solution

You could use the `Request.RawUrl`, `Request.Url.OriginalString`, `Request.Url.ToString()` or `Request.Url.AbsoluteUri`.

Problem

I am using the Facebook comments plugin on a blog I am building. It has some FBXML tags that are interpreted by the facebook javascript that is referenced on the page. This all works fine, but I have to pass in the current, fully-qualified URL to the plugin. ``` <div style="width: 900px; margin: auto;"> <div id="fb-root"></div> <fb:comments href="URL HERE" num_posts="10" width="900"></fb:comments> </div> ``` What is the best way to get the URL of the current page? The request URL. Solution Here is the final code of my solution: ``` <fb:comments href="@Request.Url.AbsoluteUri" num_posts="15" width="900"></fb:comments> ```

Original source