planmanage.aspx.cs

来自「asp开发的项目管理系统,能够跟进工程进度」· CS 代码 · 共 45 行

CS
45
字号
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 System.Data.SqlClient;
using SQLHelper;

public partial class Content_Admin_PlanManage:System.Web.UI.Page
{
	protected void Page_Load(object sender,EventArgs e)
	{
		if(Session[SystemConst.USERIDKEY] == null)
		{
			Response.Write(SysOperation.OpenDialog(
				"你还没有登录,请先登录..."));
			Response.Write("<script>history.back()<script>");
			return;
		}
		if(!Page.IsPostBack)
		{
			BindPlanData();
		}
	}
	private void BindPlanData()
	{
		IContent content = new Content();
		DataSet ds = new DataSet("Plan");
		content.GetGenericInfoDS((byte)Column.Plan,ref ds);

		PlanCalendar.DataSource = ds;
		PlanCalendar.DataBind();
	}	
	
	protected void NewContentBtn_Click(object sender,EventArgs e)
	{
		Response.Redirect("~/Content/Admin/AddGenericInfo.aspx?ColumnID=" + ((byte)Column.Plan).ToString());
	}	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?