⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sbwf.aspx.cs

📁 该系统采用asp+sql的实验室管理系统
💻 CS
字号:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using Data_Contrl;

namespace Sbgl.Admin
{
	/// <summary>
	/// sbwf 的摘要说明。
	/// </summary>
	public partial class sbwf : System.Web.UI.Page
	{
	
		protected void Page_Load(object sender, System.EventArgs e)
		{
			// 在此处放置用户代码以初始化页面
			int id=Request["id"]==null?0:Convert.ToInt32(Request["id"].ToString());
            Sbgl_Up my = new Sbgl_Up();
			showList.DataSource=my.Get_Sbwf_L(id);
			showList.DataBind();
		}

		#region Web 窗体设计器生成的代码
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// 设计器支持所需的方法 - 不要使用代码编辑器修改
		/// 此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{    

		}
		#endregion
		protected void Submit1_ServerClick(object sender, System.EventArgs e)
		{
			String Selid=Request["selAnnounce"];
			if(Selid!="")
			{
				if(Selid.IndexOf(",")!=0)
				{
					String[] selidx=Selid.Split(',');
					foreach(String s in selidx)
					{
						Sbgl_Contrl my = new Sbgl_Contrl();
						my.Delid("H_Sb_info",Convert.ToInt32(s));
						my.Delid("H_Sb_Pz_info","sbid",Convert.ToInt32(s));
					}
				}
				else
				{ 
					Sbgl_Contrl my = new Sbgl_Contrl();
					my.Delid("H_Sb_info",Convert.ToInt32(Selid));
					my.Delid("H_Sb_Pz_info","sbid",Convert.ToInt32(Selid));
				}
			    Response.Redirect("sbwf.aspx?id="+Request["id"]+"&nodename="+Request["NodeName"]);
			}
			else
			{
				Response.Redirect("sbwf.aspx?id="+Request["id"]+"&nodename="+Request["NodeName"]);
			}	
		}

		protected void showList_SelectedIndexChanged(object sender, System.EventArgs e)
		{
		
		}
	}
}

⌨️ 快捷键说明

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