与えられた URL:
http://www.stackoverflow.com/question ? 質問=123&回答=5
およびそれに対応する ActionMethod と Model:
public ActionResult Question(RequestObject request)
{
return View("Question", request);
}
public class RequestObject
{
public string AskId
{
get;
set;
}
public string NumberOfAnswers
{
get;
set;
}
}
QueryString と RequestObject のパラメーターが異なることに注意してください。デフォルトのバインディング動作でそれを達成できますか? カスタム バインダーを作成する必要がありますか?
ありがとう!