Init YZ_BASF

This commit is contained in:
2024-05-13 08:48:51 +08:00
parent 2ff382ee61
commit c586dd7e9e
3815 changed files with 616322 additions and 0 deletions
@@ -0,0 +1,27 @@
using System;
using System.Web;
using System.Web.UI;
namespace FineUIPro.Web.common.WelderManage
{
public partial class SeeQRImage : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string welderId = Request.Params["WelderId"];
if (!string.IsNullOrEmpty(welderId))
{
Model.Welder_Welder welder = BLL.WelderService.GetWelderById(welderId);
if (welder != null && !string.IsNullOrEmpty(welder.QRCodeAttachUrl))
{
this.Image1.ImageUrl = "~/" + welder.QRCodeAttachUrl;
}
}
}
}
}
}