ChengDa_English/SGGL/FineUIPro.Web/ZHGL/FirstArticalInspaction/FirstArticleInspection.aspx.cs

28 lines
727 B
C#
Raw Normal View History

2024-11-11 15:10:35 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.ZHGL.FirstArticalInspaction
{
2025-01-08 11:06:24 +08:00
public partial class firstArticleInspection : PageBase
2024-11-11 15:10:35 +08:00
{
2025-01-08 11:06:24 +08:00
public firstArticleInspection()
{
}
2024-11-11 15:10:35 +08:00
protected void Page_Load(object sender, EventArgs e)
{
2025-01-08 11:06:24 +08:00
if (!IsPostBack)
{
btnReset.OnClientClick = SimpleForm1.GetResetReference();
}
}
protected void btnSubmit_Click(object sender, EventArgs e)
{
labResult.Text = "用户名:" + tbxUserName.Text + " 密码:" + tbxPassword.Text;
2024-11-11 15:10:35 +08:00
}
}
}