代码无效引用清理,试压包资料界面看板修改

This commit is contained in:
2025-10-10 14:33:21 +08:00
parent 87fb529521
commit 55b798135c
933 changed files with 5897 additions and 7541 deletions
@@ -1,22 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using BLL;
using System.Data;
using BLL;
using System;
namespace FineUIPro.Web.InterFace
{
public partial class IFLogList : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
{
if (!IsPostBack)
{
// BLL.ConstValue.InitConstValueDropDownList(this.drpDataType, "DataType", true);
// BLL.ConstValue.InitConstValueDropDownList(this.drpDataType, "DataType", true);
BindGrid();
}
}
@@ -25,12 +18,12 @@ namespace FineUIPro.Web.InterFace
private void BindGrid()
{
Model.InterFaceLog interFaceLog=new Model.InterFaceLog();
interFaceLog.InterFaceName=txtUserName.Text;
var q= BLL.InterFaceLogService.GetInterFaceLogByModle(interFaceLog);
Model.InterFaceLog interFaceLog = new Model.InterFaceLog();
interFaceLog.InterFaceName = txtUserName.Text;
var q = BLL.InterFaceLogService.GetInterFaceLogByModle(interFaceLog);
Grid1.RecordCount = InterFaceLogService.count;
Grid1.DataSource= InterFaceLogService.getListData(interFaceLog, Grid1);
Grid1.DataBind();
Grid1.DataSource = InterFaceLogService.getListData(interFaceLog, Grid1);
Grid1.DataBind();
}