20220315 代码初始化上传

This commit is contained in:
2022-03-15 17:36:38 +08:00
commit 9dc8a7e05d
9501 changed files with 2066431 additions and 0 deletions
@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.HJGL.BaseInfo
{
public partial class WeldingLocationView : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.txtWeldingLocationCode.Focus();
btnClose.OnClientClick = ActiveWindow.GetHideReference();
string WeldingLocationId = Request.Params["WeldingLocationId"];
if (!string.IsNullOrEmpty(WeldingLocationId))
{
Model.Base_WeldingLocation WeldingLocation = BLL.Base_WeldingLocationServie.GetWeldingLocationById(WeldingLocationId);
if (WeldingLocation != null)
{
this.txtWeldingLocationCode.Text = WeldingLocation.WeldingLocationCode;
this.txtWeldingLocationName.Text = WeldingLocation.WeldingLocationName;
this.txtRemark.Text = WeldingLocation.Remark;
}
}
}
}
}
}