right now i take the

 RequestContext 

and pass this into a UrlHelper like this:

UrlHelper u = new UrlHelper(context);
string hrSyncUrl = u.Action("Update", "Person");

but the issue is that this seems to return:

/Person/Update

instead of:

http://www.mysite.com/Person/Update

so, given a controller and and action name, how can i generate a FULL url from inside a controller?

the reason that i need this is that i am generating an email so i need the full url to put in the body of that email.

link|improve this question

What are you hoping to use it for? – R0MANARMY Apr 26 '11 at 18:02
@R0MANARMY - i updated the question, i need to put a url into an email and "/Person/Update" doesn't really work ? – leora Apr 26 '11 at 18:02
feedback

2 Answers

up vote 3 down vote accepted

By using the proper overload:

string hrSyncUrl = u.Action("Update", "Person", null, "http");

And to avoid hardcoding the protocol you could fetch it from the request:

var protocol = context.HttpContext.Request.Url.Scheme;
string hrSyncUrl = u.Action("Update", "Person", null, protocol);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.