migrate to new git
This commit is contained in:
26
web/admin/follower/order_record.aspx.cs
Normal file
26
web/admin/follower/order_record.aspx.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user