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

📄 webform3.aspx.cs

📁 C#示例代码,刚刚注册随便找了一个东西测试一下好不好用
💻 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;

namespace student
{
	/// <summary>
	/// WebForm3 的摘要说明。
	/// </summary>
	public class WebForm3 : System.Web.UI.Page
	{
		protected System.Web.UI.WebControls.Label Label1;
		protected System.Web.UI.WebControls.Label Label2;
		protected System.Web.UI.WebControls.Label Label3;
		protected System.Web.UI.WebControls.Label Label4;
		protected System.Web.UI.WebControls.Label Label5;
		protected System.Web.UI.WebControls.TextBox TextBox1;
		protected System.Web.UI.WebControls.TextBox TextBox2;
		protected System.Web.UI.WebControls.TextBox TextBox3;
		protected System.Web.UI.WebControls.TextBox TextBox4;
		protected System.Web.UI.WebControls.TextBox TextBox5;
		protected System.Web.UI.WebControls.CheckBox CheckBox1;
		protected System.Web.UI.WebControls.CheckBox CheckBox2;
		protected System.Web.UI.WebControls.CheckBox CheckBox3;
		protected System.Web.UI.WebControls.CheckBox CheckBox4;
		protected System.Web.UI.WebControls.CheckBox CheckBox5;
		protected System.Web.UI.WebControls.HyperLink HyperLink1;
		protected System.Web.UI.WebControls.Button Button1;
		protected System.Web.UI.WebControls.DataGrid DataGrid1;
	
		private void Page_Load(object sender, System.EventArgs e)
		{
			// 在此处放置用户代码以初始化页面
		}

		#region Web Form Designer generated code
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// 设计器支持所需的方法 - 不要使用代码编辑器修改
		/// 此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{    
			this.Button1.Click += new System.EventHandler(this.Button1_Click);
			this.Load += new System.EventHandler(this.Page_Load);

		}
		#endregion

		private void Button1_Click(object sender, System.EventArgs e)
		{
			string check=null;
			if(CheckBox1.Checked)
			{
				check="10000";
			}
			if(CheckBox2.Checked)
			{
				check="01000";
			}
			if(CheckBox3.Checked)
			{
				check="00100";
			}
			if(CheckBox4.Checked)
			{
				check="00010";
			}
			if(CheckBox5.Checked)
			{
				check="00001";
			}
			if(CheckBox1.Checked&&CheckBox2.Checked)
			{
				check="11000";
			}
			if(CheckBox1.Checked&&CheckBox3.Checked)
			{
				check="10100";
			}
			if(CheckBox1.Checked&&CheckBox4.Checked)
			{
				check="10010";
			}
			if(CheckBox1.Checked&&CheckBox5.Checked)
			{
				check="10001";	 
			}
			if(CheckBox2.Checked&&CheckBox3.Checked)
			{
				check="01100";
			}
			if(CheckBox2.Checked&&CheckBox4.Checked)
			{
				check="01010";	 
			}
			if(CheckBox2.Checked&&CheckBox5.Checked)
			{
				check="01001";	 
			}
			if(CheckBox3.Checked&&CheckBox4.Checked)
			{
				check="00110";	 
			}
			if(CheckBox3.Checked&&CheckBox5.Checked)
			{
				check="00101";		 
			}
			if(CheckBox4.Checked&&CheckBox5.Checked)
			{
				check="00011";
			}
			if(CheckBox1.Checked&&CheckBox2.Checked&&CheckBox3.Checked)
			{
				check="11100";		 
			}
			//
			if(CheckBox1.Checked&&CheckBox2.Checked&&CheckBox4.Checked)
			{
				check="11010";	 
			}
			if(CheckBox1.Checked&&CheckBox2.Checked&&CheckBox5.Checked)
			{
				check="11001";	 
			}
			if(CheckBox1.Checked&&CheckBox3.Checked&&CheckBox4.Checked)
			{
				check="10110";	 
			}
			if(CheckBox1.Checked&&CheckBox3.Checked&&CheckBox5.Checked)
			{
				check="10101";	 
			}
			
			//
			if(CheckBox2.Checked&&CheckBox3.Checked&&CheckBox4.Checked)
			{
				check="01110";	 
			}
			if(CheckBox2.Checked&&CheckBox3.Checked&&CheckBox5.Checked)
			{
				check="01101";
			}
			if(CheckBox5.Checked&&CheckBox3.Checked&&CheckBox4.Checked)
			{
				check="00111"; 
			}
			if(CheckBox1.Checked&&CheckBox2.Checked&&CheckBox3.Checked&&CheckBox4.Checked)
			{
				check="11110";
			}
			if(CheckBox1.Checked&&CheckBox2.Checked&&CheckBox3.Checked&&CheckBox5.Checked)
			{
				check="11101";
			}
			if(CheckBox5.Checked&&CheckBox2.Checked&&CheckBox3.Checked&&CheckBox4.Checked)
			{
				check="01111";	 
			}
			if(CheckBox1.Checked&&CheckBox2.Checked&&CheckBox3.Checked&&CheckBox4.Checked&&CheckBox5.Checked)
			{
				check="11111"; 
			}
			DataSet aaa=new zhou.Service1().sele(TextBox1.Text,TextBox2.Text,TextBox3.Text,TextBox4.Text,TextBox5.Text,check);
			DataGrid1.DataSource=aaa;
			DataGrid1.DataBind();

		}
	}
}

⌨️ 快捷键说明

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