Controller 如何向view注册js?
比如添加新闻的信息时候 弹出对话框 提交成功 或失败
就是类似以前的
ClientScriptManager cs = page.ClientScript;
Type cstype = page.GetType();
if (!cs.IsClientScriptBlockRegistered(cstype, cskey))
{
cs.RegisterClientScriptBlock(cstype, cskey, sb.ToString(), true);
}
返回一个TempData,view中判断
Controller根本就不应该给View提供js,所有的js应当写在View里才对