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

27 lines
686 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using WeiSha.Common;
using Song.ServiceInterfaces;
using Song.Entities;
using WeiSha.WebControl;
namespace Song.Site.Manage.Course
{
public partial class Courses_Knl : 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;
}
}
}