我使用 kendo 创建了一个通知,当我保留system.media.systemsounds.hand.play()
的通知时,
当我的项目正在运行时它工作正常,当我发布我的项目并在构建版本中运行时,通知声音不会出现?
我该怎么办?
public JsonResult DemoNotification()
{
List<DemoNotification> res = new List<DemoNotification>();
DataTable dt = Functions.GetTbl(cmd);
if (dt.Rows.Count > 0)
{
for(int i=0;i<dt.Rows.Count;i++){
DemoNotification obj = new DemoNotification();
obj.CompanyName = dt.Rows[i]["CompanyName"].ToString();
obj.DemoDate =Convert.ToDateTime(dt.Rows[i]"DemoDate"]);
res.Add(obj);
System.Media.SystemSounds.Hand.Play();
}
}
return Json(res);
}
function load() {
$.ajax({
url: root("CRM/DemoNotification"),
type: "POST",
}).done(function (data) {
for (var i = 1; i <= data.length; i++) {
notification.ShowDemoSuccess("Demo for <b>" + data[i - 1].CompanyName.toString() + "</b> on", Date(data[i - 1].DemoDate));
}
});
}