Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this method...

public override void RegisterArea(AreaRegistrationContext context) {
    context.MapRoute("AccesoCliente", "Api/Clientes/Cliente/{id}", new {
        controller = "Clien`enter code here`tes",
        action = "Cliente",
        id = UrlParameter.Optional
    }
);

... It allow me to give an url pass an id and perform certain methods. But I want to pass name and password to create a login. I do not now how to make this part

"Api/Clientes/Cliente/{id}",

To have name and password or have should I construct this mapRoute nor know by what tags should I google it. If you can help, giving a direct response or any link to tutorials about this topic, I would greatly appreciate it.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.