必须填写至少10个字的日志
nnhy 编写于 2012-07-27 18:48:21
X
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;


public partial class Admin_Center_SelectFeedliquor : PageBase
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack) lblmsg.Text = Request["Name"];
    }

    public override bool CheckPermission()
    {
        return true;
    }
}