首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

mvc3中location.href传值如何接收不到

2012-05-16 
mvc3中location.href传值怎么接收不到啊前台$(.btnEdit).bind(click, function () {var number1002

mvc3中location.href传值怎么接收不到啊
前台 

 $('.btnEdit').bind('click', function () {
  var number="1002";
  location.href = "/aa/Edit/"+number;

  });

mvc3的controller中

  public ActionResult Edit(string number)
  {
   
  Directory directory = resourceService.GetDirByNum(number);
  return View();
  }

怎么接收不到 number 值呢 number 为null

[解决办法]

location.href = "/aa/?number="+number;


string data=Request["number"];

热点排行