dd
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
namespace FineUIPro.Web.HJGL.WeldingManage
|
||||
{
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Web.UI;
|
||||
using BLL;
|
||||
|
||||
public partial class ShowProduce : PageBase
|
||||
{
|
||||
#region 定义项
|
||||
/// <summary>
|
||||
/// 焊接工艺评定id
|
||||
/// </summary>
|
||||
public string WeldingProcedureId
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["WeldingProcedureId"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["WeldingProcedureId"] = value;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 照片名称
|
||||
/// </summary>
|
||||
public string FileName
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["FileName"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["FileName"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 上传照的物理路径
|
||||
/// </summary>
|
||||
public string ImageUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["ImageUrl"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["ImageUrl"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string WeldingProcedureJotId
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["WeldingProcedureJotId"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["WeldingProcedureJotId"] = value;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 加载页面
|
||||
/// <summary>
|
||||
/// 加载页面
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!IsPostBack)
|
||||
{
|
||||
this.WeldingProcedureId = Request.Params["weldingProcedureId"];
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// 提交按钮
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnSave_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user