asp.net中,要在IE状态栏时刻检查串口是否连接成功;代码如下:
protected void Page_Load(object sender, EventArgs e)
{
System.Web.HttpContext.Current.Response.Write("<script>window.setInterval(function(){load('test');},1000);</script>");
}
运行时提示“Microsoft JScript 运行时错误: 缺少对象”,该如何解决?或者有其他方法处理该问题?
12345678_0001