initProject

This commit is contained in:
2024-05-08 11:01:54 +08:00
commit e7cea71567
4078 changed files with 579425 additions and 0 deletions
@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.Design
{
public partial class DocumentFallback : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
string eprojectId = Request.Params["eprojectId"];
if (!string.IsNullOrEmpty(eprojectId))
{
var project = BLL.EProjectService.GeteProjectById(eprojectId);
txtProject.Text = project.ProjectControl_JobNo + "-" + project.ProjectControl_JobTitle;
}
txtFallbackMan.Text = CurrUser.UserName;
txtFallbackDate.Text= string.Format("{0:yyyy-MM-dd}", DateTime.Now);
}
}
protected void btnSave_Click(object sender, EventArgs e)
{
string eprojectId = Request.Params["eprojectId"];
}
}
}