I have a Custom Value Provider implemented. And I have a link with containing querystring something like
ads?lid=val
and my action definition
public async ReturnType ads(int lid=0)
I registered Value provider in Global.asax like
ValueProviderFactories.Factories.Add(new Listhell.CODE.CustomValueProviderFactory());
But when I click on link on controller I get querystring value but not cookie's
How can make mvc to use custom value provider to pass cookie value to controller instead of default behavior?