Files
17168ERP/web/admin/follower/order_record.aspx.cs
2025-08-29 01:27:25 +08:00

26 lines
690 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using static publicFun;
public partial class admin_follower_order_record : MyWeb.config
{
private Model.ezEntities _db = new Model.ezEntities();
protected void Page_Load(object sender, EventArgs e)
{
var userid = Request["userid"];
if(!string.IsNullOrEmpty(userid))
{
int _num = Val(userid);
var qry = _db.followers.Where(x => x.num == _num).FirstOrDefault();
if (qry != null)
{
username.Text = qry.u_name;
}
}
}
}