コントローラーへのポストバックを取得しようとしていますが、応答がありません。これを行う方法についてのアイデアはありますか?
次のような Facebook の iframe のビューを取得しました。
<iframe src="https://www.facebook.com/plugins/registration?
client_id=164951196883222&
redirect_uri=http://global.iobffp.com/SIGN-IN/&
fields=name,birthday,gender,location,email,password"
scrolling="auto"
frameborder="no"
style="border: none"
allowtransparency="true"
width="390"
height="600">
</iframe>
そして、jsonresult である GetFbRegistration と呼ばれる私のコントローラー:
public JsonResult GetRegistration()
{
return Json("something", JsonRequestBehavior.AllowGet);
}
どうすればこのコントローラーに入ることができますか?