I have been using openid selector to implement openid login on a web site following the tutorial here.

It all works ok but the openid_identifier is read in the controller from the request like so Request.Form["openid_identifier"] and I wanted to instead add the selected openid_identifier to the view model and have it set in there instead (so I can add other things to the view model or so I can test the controller more easily).

Can I do this? How?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Does changing

public ActionResult Authenticate(string returnUrl)  

to

public ActionResult Authenticate(String returnUrl, String openid_identifier)

do it for you?

link|improve this answer
Thanks Naraen, this allows me to avoid using the request to read the data which makes the testing easier, and is a suitable workaround until I can figure out how to set the value of a property on a model – Sam Holder Apr 30 '11 at 16:21
feedback

Your Answer

 
or
required, but never shown

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