代码拉取完成,页面将自动刷新
同步操作将从 mabanbang/asp.net学生成绩管理系统 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace GradeMis
{
public partial class AdminStuAdd : System.Web.UI.Page
{
protected SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["GradeSys"]);
protected void Page_Load(object sender, EventArgs e)
{
UnobtrusiveValidationMode = UnobtrusiveValidationMode.None;
}
#region
protected void Add()
{
string sql = string.Empty;
string sid = this.txtsid.Text.ToString();
string name = this.txtname.Text.ToString();
string sex = string.Empty;
if (this.rbman.Checked)
{
sex = "男";
}
else
{
sex = "女";
}
int age = Convert.ToInt32(this.txtage.Text.ToString());
string s = this.txts.Text.ToString();
string classname = this.txtclassname.Text.ToString();
string years = this.txtyear.Text.ToString();
sql = string.Format("insert into 学生信息表(学号,姓名,性别,年龄,所在院系,班级名,入学年份 ) values('{0}','{1}','{2}',{3},'{4}','{5}','{6}')", sid, name, sex, age, s, classname, years);
SqlCommand cmd = new SqlCommand(sql, conn);
try
{
conn.Open();
cmd.ExecuteNonQuery();
Response.Write("<script>alert('学生信息添加成功!')</script>");
}
catch//(Exception ex)
{
//Response.Write(ex);
Response.Write("<script>alert('该学号已经存在,添加失败!')</script>");
}
finally
{
conn.Close();
}
}
#endregion
protected void Button1_Click(object sender, System.EventArgs e)
{
Add();
}
protected void Button2_Click(object sender, System.EventArgs e)
{
Response.Redirect("AdminStu.aspx");
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。