Init YZ_BASF
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user