您好我有使用<%= Ajax.ActionLink這樣的...不要在DIV中顯示partialView
<%= Ajax.ActionLink("Change Image", "ChangeImgWithData", "Package",
new AjaxOptions() {UpdateTargetId="img", InsertionMode= InsertionMode.Replace , HttpMethod="GET"})%>
<div id="img"> </div>
在我的控制器
我有這個..
public ActionResult ChangeImgWithData()
{
if (Request.IsAjaxRequest())
{
return PartialView("~/Views/Package/_Change.ascx");
}
else
{
return View();
}
我的Request.IsAjaxRequest()是空的,我不知道爲什麼?我想展示partialView _change裏面的img div
有什麼想法嗎?謝謝!!
IsAjaxRequest返回一個bool值類型,它不能爲null ...什麼是null? –