📄 查看学生成绩.aspx.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 System.Data.SqlClient;
namespace 学生综合素质测评系统
{
/// <summary>
/// 查询学生 的摘要说明。
/// </summary>
public class 查看学生成绩 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Button Button1;
protected System.Web.UI.WebControls.Button Button2;
protected System.Web.UI.WebControls.Label Label2;
protected System.Web.UI.WebControls.TextBox TextBox1;
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.Label Label3;
protected System.Web.UI.WebControls.HyperLink HyperLink5;
protected System.Web.UI.WebControls.DataGrid DataGrid1;
private void Page_Load(object sender, System.EventArgs e)
{
this.Button1.Click +=new System.EventHandler(this.Button1_Click);
this.Button2.Click +=new System.EventHandler(this.Button2_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#region Web 窗体设计器生成的代码
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)
{
SqlConnection conn=new SqlConnection("Server=.;database=学生综合素质测评系统;user=sa;password=");
conn.Open();
string sql1="select 学号 from 学生 where 学号='"+TextBox1.Text+"'";
SqlCommand mycom1=new SqlCommand(sql1,conn);
SqlDataReader mydr1=mycom1.ExecuteReader();
if (mydr1.Read()==true)
{
SqlConnection Conn1=new SqlConnection("Server=.;database=学生综合素质测评系统;user=sa;password=");
Conn1.Open();
string pppp="select f.学号,f.辅导员评总分+b.班评总分 as 最终分数 from 辅导员总分表 f join 班评总分表 b on f.学号=b.学号";
DataSet myds=new DataSet();
SqlDataAdapter myda=new SqlDataAdapter(pppp,Conn1);
myda.Fill(myds,"辅导员总分表");
DataGrid1.DataSource=myds;
DataGrid1.DataBind();
}
else
Label2.Text="该学号不存在!";
}
private void Button2_Click(object sender, System.EventArgs e)
{
TextBox1.Text="";
Label2.Text="";
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -