C#代码:
string json = JsonConvert.SerializeObject(employee);
对于Ajax中的成功函数,我应该返回什么值?
的Ajax:
$('#image').attr('src', "data:image/jpg; base64," + employee.Image;
这是否意味着来自C#的员工变量是我要返回的?
[WebMethod]
public static string LoadPhoto(string Id)
{
//what should be the return parameter? byte[] or string?
}
我被困在这里......提前感谢任何能给我认真回答的人。