27 lines
686 B
C#
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;
|
|
}
|
|
}
|
|
} |