ZHJA_HJGL/HJGL_ZH/FineUIPro.Web/RLSB/FaceConfirm.aspx.cs

24 lines
778 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using RLSB;
namespace FineUIPro.Web.RLSB
{
public partial class FaceConfirm : System.Web.UI.Page
{
protected string flag = "";//标志1-焊工2-保管员)
protected string keyId = "";//接收用户ID
protected string grid = "";//1-领料2-退料3-退回焊条头
protected void Page_Load(object sender, EventArgs e)
{
keyId = Request.Params["keyId"];
flag = Request.Params["flag"];//1-焊工2-保管员
grid = Request.Params["grid"];//1-领料2-退料3-退焊条头4-保管员结束确认
}
}
}