85 lines
2.6 KiB
C#
85 lines
2.6 KiB
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;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace Song.Site.Manage.Course
|
|||
|
|
{
|
|||
|
|
public partial class List : Extend.CustomPage
|
|||
|
|
{
|
|||
|
|
private string _uppath = "Course";
|
|||
|
|
protected void Page_Load(object sender, EventArgs e)
|
|||
|
|
{
|
|||
|
|
if (!this.IsPostBack)
|
|||
|
|
{
|
|||
|
|
BindData(null, null);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
protected void BindData(object sender, EventArgs e)
|
|||
|
|
{
|
|||
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʦ
|
|||
|
|
Song.Entities.Teacher th = Extend.LoginState.Accounts.Teacher;
|
|||
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
Song.Entities.Organization org = Business.Do<IOrganization>().OrganCurrent();
|
|||
|
|
//<2F><>ǰ<EFBFBD><C7B0>ʦ<EFBFBD><CAA6><EFBFBD><EFBFBD><EFBFBD>Ŀγ<C4BF>
|
|||
|
|
List<Song.Entities.Course> cous = Business.Do<ICourse>().CourseAll(org.Org_ID, -1,th.Th_ID, null);
|
|||
|
|
foreach (Song.Entities.Course c in cous)
|
|||
|
|
{
|
|||
|
|
//<2F>γ<EFBFBD>ͼƬ
|
|||
|
|
if (!string.IsNullOrEmpty(c.Cou_LogoSmall) && c.Cou_LogoSmall.Trim() != "")
|
|||
|
|
{
|
|||
|
|
c.Cou_LogoSmall = Upload.Get[_uppath].Virtual + c.Cou_LogoSmall;
|
|||
|
|
c.Cou_Logo = Upload.Get[_uppath].Virtual + c.Cou_Logo;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
rptCourse.DataSource = cous;
|
|||
|
|
rptCourse.DataBind();
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// ɾ<><C9BE><EFBFBD>γ<EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="sender"></param>
|
|||
|
|
/// <param name="e"></param>
|
|||
|
|
protected void lbDelete_Click(object sender, EventArgs e)
|
|||
|
|
{
|
|||
|
|
LinkButton lb = (LinkButton)sender;
|
|||
|
|
int id = Convert.ToInt32(lb.CommandArgument);
|
|||
|
|
Business.Do<ICourse>().CourseDelete(id);
|
|||
|
|
this.Reload();
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><EFBFBD><DEB8>Ƿ<EFBFBD><C7B7><EFBFBD>ʾ<EFBFBD><CABE>״̬
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="sender"></param>
|
|||
|
|
/// <param name="e"></param>
|
|||
|
|
protected void sbShow_Click(object sender, EventArgs e)
|
|||
|
|
{
|
|||
|
|
LinkButton ub = (LinkButton)sender;
|
|||
|
|
int id = int.Parse(ub.CommandArgument);
|
|||
|
|
//
|
|||
|
|
Song.Entities.Course entity = Business.Do<ICourse>().CourseSingle(id);
|
|||
|
|
entity.Cou_IsUse = !entity.Cou_IsUse;
|
|||
|
|
Business.Do<ICourse>().CourseSave(entity);
|
|||
|
|
BindData(null, null);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|