在运行代码时 报如下错误
Microsoft JScript 运行时错误: “ZF”未定义!!
这是代码:
前台:
function Item_Del(itemNo, LabCode) {
var retV = ZF.DictionaryInfoSys.LabTestItemManageWeblis.EnableUseFlag(itemNo,LabCode).value;
if (retV == "1") {
alert("操作成功!");
location.href = location.href;
}
else
alert("操作失败!");
这是后台代码:
[AjaxPro.AjaxMethod()]
public string EnableUseFlag(string ItemNo, string LabCode)
{
Model.Lab_TestItem labtestitemModel = new Model.Lab_TestItem();
labtestitemModel = iblti.GetModel(LabCode.Trim(), ItemNo.Trim());
if (labtestitemModel.UseFlag == 0)
labtestitemModel.UseFlag = 1;
else
labtestitemModel.UseFlag = 0;
int row = iblti.Update(labtestitemModel);
if (row > 0)
return "1";
else
return "0";
}
求指教!!!
page_load 缺少 AjaxPro.Utility.RegisterTypeForAjax(typeof(ZF.DictionaryInfoSys.LabTestItemManageWeblis));