ZHJA_HJGL/HJGL_ZH/FineUIPro.Web/FingerMark/FingerConfirm.aspx.cs

22 lines
667 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;
namespace FineUIPro.Web.FingerMark
{
public partial class FingerConfirm : 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"];
grid = Request.Params["grid"];
}
}
}