17 lines
288 B
C#
17 lines
288 B
C#
using GPW_data;
|
|
using System;
|
|
using System.Web.UI;
|
|
|
|
namespace GPW_Barcode
|
|
{
|
|
public partial class Barcode : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
utils.mng.dailyDuties();
|
|
}
|
|
}
|
|
}
|
|
} |