问题描述
解决方案
http://img.ask.csdn.net/upload/201507/31/1438328786_653353.png
解决方案二:
protected void Page_Load(object sender, EventArgs e)
{
if (Request.Form["callmethod"] == "GetProductShowTemplate()") {
Response.Write(GetProductShowTemplate(int.Parse(Request.Form["id"])));
Response.End();
}
}
success:function(data){//不知道你GetProductShowTemplate返回的idlist内容是什么,自己alert看返回的内容是什么。不指定dataType一般data是字符串,字符串克没有你的那个ShowTemplate属性
alert(data)
}
解决方案三:
通过一个方法获取到了子类的所有字段信息,然后想找到它父类的ShowTemplate字段的值(想通过LINQ查询实现)
时间: 2024-11-25 15:42:11