//控制器
public Label CallbackPanelPartial()
{
Label rb = new Label();`
rb.ID = "dd";
rb.Text = "aaa";
return rb;
}
綁定標籤爲html內容jQuery函數來查看
function LoadFormGen(s,e)
{
$.ajax({
type: "POST",
url: '@Url.Action("CallbackPanelPartial", "LoadForm")',
beforeSend: function() {
lpTimeslot.Show();
},
success: function (response) {
$("#genForm").html(response);
pcTimeslotHed.SetHeaderText('Load - [New]');
pcTimeslotHed.Show();
lpTimeslot.Hide();
}
});
}
我得到一個結果爲System.Web.UI.WebControl.Label。我想要的是獲取HTML內容返回標籤。
'系統.Web.UI.WebControl.Label'是web表單,而不是MVC! –