コントローラーを持っている:
public class MyController : Controller
{
[HttpGet]
public ActionResult MyAction(int iMode, string strSearch)
{
return View();
}
}
私の見解では、id=center の div があります
次のコードをjavascriptで実行します
url = "/MyController/MyAction?iMode=7&strSearch=as";
$('#center').load(url);
デバッガーが最初の行でアクションのブレークポイントを検出すると、iMode 変数は適切な値 7 を示し、strSearch パラメーターは null として到着します。
どんな助け/アドバイスも大歓迎です。