strDeviceTr += “<td> 0.8</td>”;
strDeviceTr += “<td><lable name=”infor”> ” + item.workinghour + ” </lable></td>”;
strDeviceTr += “<td> 0.8</td>”;
strDeviceTr += “<td><lable name=”infor”> ” + item.workinghour + “</lable></td>”;
strDeviceTr += “<td> </td>”;
strDeviceTr += “</tr>”;
});
$(“#infor”).append(strDeviceTr);
});
}
}
ashx
string innerid = CommonClass.Request.GetRequest<string>(“InnerID”, “”);
string key = CommonClass.Request.GetRequest<string>(“key”, “”);
string result = “”;
if (key == “StockOutApp” && innerid != “”)
{
result = StockOutApp(innerid);
context.Response.Write(result);










