ZhiYeJianKang_PeiXun/Song.Site/Manage/Course/Courses_Message.aspx.cs
2025-02-20 15:41:53 +08:00

35 lines
825 B
C#

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using WeiSha.Common;
using Song.ServiceInterfaces;
using Song.Entities;
using WeiSha.WebControl;
namespace Song.Site.Manage.Course
{
public partial class Courses_Message : Extend.CustomPage
{
//¿Î³Ìid
protected int couid = WeiSha.Common.Request.QueryString["couid"].Int32 ?? 0;
protected void Page_Load(object sender, EventArgs e)
{
//Òþ²ØÈ·¶¨°´Å¥
EnterButton btnEnter = (EnterButton)Master.FindControl("btnEnter");
btnEnter.Visible = false;
}
}
}