I am trying to create a ValidationAttribute (for Remote validation which only works on the server side) and inside the IsValid method, I need to resolve the url from url route values. Here is my initial set up :

public class ServerSideRemoteAttribute : ValidationAttribute {

    public string Controller { get; set; }
    public string Action { get; set; }
    public object RouteValues { get; set; }

    public ServerSideRemoteAttribute(string controller, string action) {

        this.Controller = controller;
        this.Action = action;
    }

    public ServerSideRemoteAttribute(string controller, string action, object routeValues) {

        this.Controller = controller;
        this.Action = action;
        this.RouteValues = routeValues;
    }

    protected override ValidationResult IsValid(object value, ValidationContext validationContext) {

        //Here I need to resolve the url in order to make a call to that controller action and get the JSON result back

        return base.IsValid(value, validationContext);
    }
}

Any thoughts?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
var httpContext = new HttpContextWrapper(HttpContext.Current);
var urlHelper = new UrlHelper(new RequestContext(httpContext, new RouteData()));
var url = urlHelper.Action(Action, Controller, RouteValues);
link|improve this answer
thanks a lot! It helped a lot. Would that resolve the full URL (like : localhost:6738/Home/Index/100)? – tugberk Nov 6 '11 at 13:26
1  
@tugberk, no it will not resolve to a full url. If you want an absolute url you will have to use the appropriate overload: var url = urlHelper.Action(Action, Controller, RouteValues, urlHelper.RequestContext.HttpContext.Request.Url.Scheme); – Darin Dimitrov Nov 6 '11 at 13:29
Thanks again. I should have looked at the MSDN instead of being lazy :s – tugberk Nov 6 '11 at 13:50
feedback

Your Answer

 
or
required, but never shown

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