亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? info_collegepoorstd.aspx.cs

?? 哈爾濱師范大學教務系統開發---基于WEB的高校教務系統平臺源碼 作者:易繼勇(哈爾濱師范大學05級計算機科學系)
?? CS
字號:
?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 System.Text;
using System.Drawing;
using System.IO;
/// <summary>
/// 哈爾濱師范大學教務系統開發
/// 作者:易繼勇
/// 郵箱:yijiyong100@163.com
/// qq:610068468
/// 哈爾濱師范大學教務平臺圖片展示地址:http://photo.sina.com.cn/yijiyong100
/// 如果您有什么問題,將您的問題發送至郵箱yijiyong100@163.com,歡迎大家和我交流討論,多多希望您提出您寶貴的意見!
/// </summary>
public partial class manager_sysManager_infomationStat_info_collegePoorStd : System.Web.UI.Page
{
    int poorSearchTag = 0;
    BaseClass bc = new BaseClass();
    protected void Page_Load(object sender, EventArgs e)
    {
        if (Convert.ToString(Session["manName"]) == "")
        {
            Response.Write("<script language=javascript>location='../../../TS_ManagerLogin.aspx'</script>");
            return;
        }
        if (!IsPostBack)
        {
            SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["strcon"]);
            con.Open();
            SqlCommand scd = new SqlCommand("select college from ts_unit_college order by id desc", con);
            string college1 = Convert.ToString(scd.ExecuteScalar());
            SqlDataAdapter sda = new SqlDataAdapter(" select speciality from ts_unit_collgeSpeciality where collegeName ='" + college1 + "'", con);
            DataSet ds = new DataSet();
            sda.Fill(ds, "ts_unit_collgeSpeciality");
            //DataRowView rowview = ds.Tables["ts_xs_professionalCourses"].DefaultView[0];
            this.speciality.DataSource = ds.Tables["ts_unit_collgeSpeciality"];

            this.speciality.DataTextField = "speciality";
            this.speciality.DataBind();

            SqlDataAdapter sda1 = new SqlDataAdapter(" select college from ts_unit_college", con);
            DataSet ds1 = new DataSet();
            sda1.Fill(ds1, "ts_unit_college");
            this.college.DataSource = ds1.Tables["ts_unit_college"];

            this.college.DataTextField = "college";
            this.college.DataBind();

            SqlDataAdapter sda2 = new SqlDataAdapter("select grade from ts_xs_studyYear ", con);

            DataSet ds2 = new DataSet();
            sda2.Fill(ds2, "ts_xs_studyYear");
            this.grade.DataSource = ds2.Tables["ts_xs_studyYear"];
            this.grade.DataTextField = "grade";
            this.grade.DataBind();

            
            con.Close();

            if (this.highNumber.Text == "0")
            {
                
                this.Panel1.Visible = false;
            }
            else
            {
                
                this.Panel1.Visible = true;
            }
        }
    }
    protected void college_SelectedIndexChanged(object sender, EventArgs e)
    {
        SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["strcon"]);
        con.Open();

        string college1 = this.college.Text;
        SqlDataAdapter sda = new SqlDataAdapter(" select speciality from ts_unit_collgeSpeciality where collegeName ='" + college1 + "'", con);
        DataSet ds = new DataSet();
        sda.Fill(ds, "ts_unit_collgeSpeciality");
        //DataRowView rowview = ds.Tables["ts_xs_professionalCourses"].DefaultView[0];
        this.speciality.DataSource = ds.Tables["ts_unit_collgeSpeciality"];

        this.speciality.DataTextField = "speciality";
        this.speciality.DataBind();
        con.Close();
    }

    protected void hignSearch1_Click(object sender, EventArgs e)
    {
        if (this.highNumber.Text == "0")
        {
            this.highNumber.Text = "1";
            this.Panel1.Visible = true;
        }
        else
        {
            this.highNumber.Text = "0";
            this.Panel1.Visible = false;
        }
    }
    protected void submit_Click(object sender, EventArgs e)
    {
        
        string sch = " ";
        if (this.studyNumber3.Checked)
        {
            if (this.studyNumber4.Text != "")
            {
                sch = sch + "and studyNumber like '%" + this.studyNumber4.Text + "%' ";
            }
        }
        if (this.IDcardNumber3.Checked)
        {
            if (this.IDcardNumber4.Text != "")
            {
                sch = sch + "and IDcardNumber like '%" + this.IDcardNumber4.Text + "%' ";
            }
        }
        if (this.studentName1.Checked)
        {
            if (this.studentName.Text != "")
            {
                sch = sch + "and studentName like '%" + this.studentName.Text + "%' ";
            }
        }
        
        if (this.speciality1.Checked)
        {
            if (this.speciality.Text != "")
            {
                sch = sch + "and speciality like '%" + this.speciality.Text + "%' ";
            }
        }
        if (this.grade1.Checked)
        {
            if (this.grade.Text != "")
            {
                int grade = Convert.ToInt32(this.grade.Text);
                sch = sch + "and  grade =" +grade +" ";
            }
        }
        if (this.three.Checked)
        {
            sch = sch + "and  totalPopulation <= 3  ";
        }
        
        if (this.seven.Checked)
        {
            sch = sch + "and  totalPopulation>=4 and totalPopulation<=7  ";
        }
        if (this.eight.Checked)
        {
            sch = sch + "and  totalPopulation >= 8  ";
        }
        if (this.exactitudePopulation1.Checked)
        {
            if (this.exactitudePopulation.Text != "")
            {
                int population = Convert.ToInt32(this.exactitudePopulation.Text);
                sch = sch + "and  totalPopulation = "+ population +"  ";
            }
        }
        if (this.incomeSource1.Checked)
        {
            if (this.incomeSource.Text != "")
            {
                if (this.incomeSource.Text == "打工")
                {
                    sch = sch + "and  incomeSource = '"+ "打工" +"'  ";
                }
                else if (this.incomeSource.Text == "務農")
                {
                    sch = sch + "and  incomeSource = '" + "務農" + "'  ";
                }
                else if (this.incomeSource.Text == "其他")
                {
                    sch = sch + "and  incomeSource != '" + "務農" + "' and incomeSource !='"+ "打工" +"'  ";
                }
            }
        }
        if (this.twoThousand.Checked)
        {
            sch = sch + "and  yearIncome <=2000  "; 
        }
        if (this.thirdThousand.Checked)
        {
            sch = sch + "and  yearIncome >2000 and yearIncome <=4000  "; 
        }
        if (this.fourThousand.Checked)
        {
            sch = sch + "and  yearIncome >4000  "; 
        }
        if (this.exactitudeYearIncome1.Checked)
        {
            if (this.exactitudeYearIncome.Text != "")
            {
                sch = sch + " and yearIncome ="+ Convert.ToInt32(this.exactitudeYearIncome.Text)+" ";
            }
        }
        if (this.postalCode1.Checked)
        {
            if (this.postalCode.Text != "")
            {
                sch = sch + "and postalCode like '%" + this.postalCode.Text + "%' ";
            }
        }
        if (this.graduateSchool1.Checked)
        {
            if (this.graduateSchool.Text!= "")
            {

                sch = sch + "and graduateSchool like '%" + this.graduateSchool.Text + "%' ";
            }
        }
        
        if (this.homeAddress1.Checked)
        {
            if (this.homeAddress.Text!="")
            {
                sch = sch + "and homeAddress like '%" + this.homeAddress.Text + "%' ";
            }
        }
        poorSearchTag =1;
        Session["poorSearchTag"] = Convert.ToString(poorSearchTag);
        Session["poorStdStatInfoSQL"] = sch;
        Session["poorStdStatGrade"] = this.grade.Text.ToString();
        if (this.grade.Text != "")
        {
            Response.Write("<script>window.open('info_collegePoorStdResult.aspx?','','width=900,height=620');window.Close();</script>");
        }
    }
    protected void fastSearch_Click(object sender, EventArgs e)
    {
        if (this.studyNumber1.Checked)
        {
            if (this.studyNumber2.Text != "")
            {
                poorSearchTag = 0;
                Session["poorSearchTag"] = Convert.ToString(poorSearchTag);
                string SQL = " where studyNumber ='"+ this.studyNumber2.Text +"' ";
                Session["fastpoorStdStatInfoSQL"] = SQL;
                Response.Write("<script>window.open('info_collegePoorStdResult.aspx?','','width=900,height=620');window.Close();</script>");
            }
        }
        if (this.IDcardNumber1.Checked)
        {
            if (this.IDcardNumber2.Text != "")
            {
                poorSearchTag = 0;
                Session["poorSearchTag"] = Convert.ToString(poorSearchTag);
                string SQL = " where IDcardNumber ='"+ this.IDcardNumber2.Text +"' ";
                Session["fastpoorStdStatInfoSQL"] = SQL;
                Response.Write("<script>window.open('info_collegePoorStdResult.aspx?','','width=900,height=620');window.Close();</script>");
            }
        }
    }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久久久蜜桃| 图片区小说区区亚洲影院| 一区二区在线电影| 蜜臀99久久精品久久久久久软件| 国产成人免费av在线| 91精品国产综合久久蜜臀| 国产精品视频看| 久久精品国产免费| 欧美无砖砖区免费| 国产精品第五页| 国产原创一区二区三区| 欧美电影影音先锋| 夜夜亚洲天天久久| 91在线观看成人| 国产亲近乱来精品视频| 奇米在线7777在线精品| 色久综合一二码| 国产精品久久久久影院| 国产精品系列在线观看| 日韩精品一区二区三区在线| 午夜精品在线视频一区| 91视频免费看| 亚洲欧洲国产日韩| fc2成人免费人成在线观看播放 | 成人高清在线视频| 精品国产91久久久久久久妲己| 亚洲成av人影院| 日本福利一区二区| 最新高清无码专区| 99精品视频在线播放观看| 国产日韩欧美高清| 丁香六月综合激情| 国产精品免费视频一区| 国产不卡免费视频| 国产无人区一区二区三区| 精品无人区卡一卡二卡三乱码免费卡| 欧美一区二区三区免费视频| 午夜亚洲福利老司机| 91麻豆精品国产91| 蜜臀av性久久久久av蜜臀妖精| 91精品国产全国免费观看| 日韩成人精品在线观看| 日韩欧美中文字幕精品| 亚洲妇女屁股眼交7| 日本大香伊一区二区三区| 亚洲精品国产第一综合99久久 | 亚洲视频香蕉人妖| 91欧美一区二区| 亚洲午夜一二三区视频| 制服丝袜成人动漫| 国内成人精品2018免费看| 亚洲国产成人午夜在线一区| 99久久国产综合精品色伊 | 中文字幕av一区 二区| 国产99久久精品| 18成人在线观看| 精品1区2区3区| 免费人成黄页网站在线一区二区 | 美女被吸乳得到大胸91| 久久久久国产免费免费| 91蝌蚪porny| 日韩av高清在线观看| 久久免费电影网| 91国产丝袜在线播放| 美女视频黄免费的久久| 国产精品久久久久久福利一牛影视| 91久久人澡人人添人人爽欧美| 日本不卡一二三| 亚洲欧美综合另类在线卡通| 欧美精品在线观看播放| 国产精品综合网| 天天爽夜夜爽夜夜爽精品视频| 久久精品一二三| 在线观看亚洲专区| 国产电影一区二区三区| 午夜久久久久久| 国产精品国产三级国产aⅴ入口| 欧美男男青年gay1069videost| 91成人国产精品| 国产一区二区三区精品视频| 亚洲成人动漫在线免费观看| 久久久久久久综合日本| 欧美日韩五月天| 99久久久精品| 国内成+人亚洲+欧美+综合在线| 一区二区成人在线| 国产精品人妖ts系列视频| 日韩一级完整毛片| 欧美在线观看你懂的| 成人免费精品视频| 久久激情五月激情| 亚洲成人av免费| 日韩一区在线免费观看| 久久久99精品免费观看不卡| 日韩一区二区免费在线观看| 色欧美片视频在线观看| caoporen国产精品视频| 高清日韩电视剧大全免费| 久久精品国产精品亚洲精品| 亚洲电影在线播放| 伊人婷婷欧美激情| 亚洲三级在线播放| 国产精品乱码一区二区三区软件| 日韩欧美国产不卡| 日韩无一区二区| 91精品在线免费| 欧美精三区欧美精三区| 欧美日韩亚洲丝袜制服| 欧美日韩一区视频| 欧美三级一区二区| 欧美蜜桃一区二区三区| 欧美亚洲动漫另类| 在线观看日产精品| 欧美系列日韩一区| 精品污污网站免费看| 欧美午夜影院一区| 欧美高清hd18日本| 欧美日本一区二区三区| 欧美午夜精品一区| 欧美酷刑日本凌虐凌虐| 欧美麻豆精品久久久久久| 欧美美女喷水视频| 欧美va亚洲va在线观看蝴蝶网| 欧美tickle裸体挠脚心vk| 欧美mv和日韩mv国产网站| 欧美xxxxxxxx| 日本一区二区免费在线观看视频| 国产欧美综合色| 亚洲日本va在线观看| 亚洲图片欧美色图| 免费成人av资源网| 国产一区二区电影| 91在线无精精品入口| 欧美伊人久久久久久久久影院 | 伊人一区二区三区| 亚洲午夜日本在线观看| 日韩成人一区二区| 国产一区二区主播在线| 北条麻妃一区二区三区| 在线观看日韩高清av| 欧美一级视频精品观看| 久久久久9999亚洲精品| 亚洲人123区| 美女免费视频一区| 波多野结衣中文字幕一区| 欧美日韩综合色| 日韩精品一区二区三区老鸭窝| 亚洲国产成人自拍| 午夜精品免费在线| 丁香网亚洲国际| 欧美日韩国产影片| 久久久精品免费免费| 亚洲一级二级在线| 国产在线国偷精品产拍免费yy | 亚洲男同1069视频| 日韩高清国产一区在线| 国产成人av电影免费在线观看| 91小视频免费看| 2024国产精品| 亚洲国产综合在线| 成人午夜又粗又硬又大| 欧美乱妇15p| 国产精品久久久久永久免费观看| 视频在线观看国产精品| proumb性欧美在线观看| 欧美一区二区三区男人的天堂| 亚洲欧美自拍偷拍色图| 精品综合免费视频观看| 欧美色图片你懂的| 国产精品午夜在线观看| 美女网站一区二区| 欧美色综合网站| 亚洲四区在线观看| 国产精品自拍毛片| 制服丝袜av成人在线看| 一区二区三区不卡视频| 国产福利精品一区| 精品国产91乱码一区二区三区| 午夜免费久久看| 欧美亚洲综合在线| 亚洲欧美日韩在线| 波多野洁衣一区| 国产精品久久久久久久久免费丝袜| 欧美aaa在线| 91精品国产色综合久久不卡蜜臀| 亚洲欧美日韩久久精品| 成人网男人的天堂| 中文字幕第一区综合| 国产尤物一区二区在线| 日韩午夜中文字幕| 日韩av二区在线播放| 欧美日韩国产高清一区二区 | 麻豆精品视频在线观看免费| 在线精品视频小说1| 亚洲乱码日产精品bd | 国产一区二区女| 精品福利一区二区三区| 国内精品国产成人国产三级粉色 | 精品一区二区在线看| 日韩欧美中文字幕制服|