资源简介

Jquery录取信息系统 运行环境:VS2010 SQL2005 运行时需要修改 web.config 连接字符串 技术特点:JqueryUI Json数据填充 三层结构 功能描述:增删改在后台查询在前台 数据库文件在DB_51Aspx下,附加即可(MS Sql2005) 登陆账号和密码均是:51aspx

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using StatusBLL;
using StudentBLL;


public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        Status sta = new Status();
        DataSet ds = new DataSet();
        ds = sta.GetAllList();
        view.DataSource = ds;
        view.DataBind();
    }
    protected void serch_Click(object sender EventArgs e)
    {
        string zkzh = zkz.Text;
        string sfzh = idc.Text;
        zkzh.Trim();
        sfzh.Trim();
        if ((zkzh == ““) && (sfzh == ““))
        {
            Response.Write(“ript>alert(‘请填写条件信息中的一项以上‘)ript>“);
        }
        else if ((zkzh != ““) && (sfzh != ““))
        {
            Students stu = new Students();
            DataSet ds2 = new DataSet();
            int s = stu.CheckStudent(zkzh sfzh);
            if (s == 1)
            {
                Response.Redirect(“Result.aspx?zkz=“ + zkzh+“&sfz=“+sfzh);
                Response.Redirect(“Result.aspx“);
            }
            else
            {
                Response.Write(“ript>alert(‘没有查到记录‘)ript>“);
            }
        }
        else if ((zkzh != ““) && (sfzh == ““))
        {
            Students stu =new Students();
            DataSet ds2 = new DataSet();
            int s = stu.CheckStudent(zkzh sfzh);
            if (s == 1)
            {
            Response.Redirect(“Result.aspx?zkz=“+zkzh);
            }
            else
            {
                Response.Write(“ript>alert(‘没有查到记录‘)ript>“);
            }

        }
        else if ((zkzh == ““) && (sfzh != ““))
        {
            Students stu = new Students();
            DataSet ds2 = new DataSet();
            int s = stu.CheckStudent(zkzh sfzh);
            if (s ==1)
            {
                Response.Redirect(“Result.aspx?sfz=“ + sfzh);
            }
            else
            {
                Response.Write(“ript>alert(‘没有查到记录‘)ript>“);
            }

        }
        else
        {
            Response.Write(“ript>alert(‘没有查到记录‘)ript>“);
        }

        }
 }

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1954  2011-11-04 14:33  51Aspx源码必读.txt
     文件        4945  2011-11-04 14:33  from.gif
     文件        2445  2011-11-04 14:33  index.aspx
     文件        2390  2011-11-04 14:33  index.aspx.cs
     文件        1921  2011-11-04 14:33  index.aspx.designer.cs
     文件       42203  2011-11-04 14:33  LQMIS.csproj
     文件        1170  2011-11-04 14:33  LQMIS.csproj.user
     文件         548  2011-11-04 14:33  LQMIS.Publish.xml
     文件         899  2011-11-04 14:33  LQMIS_JQuery.sln
     文件       24064  2011-11-04 14:33  LQMIS_JQuery.suo
     文件        3323  2011-11-04 14:33  Result.aspx
     文件        3073  2011-11-04 14:33  Result.aspx.cs
     文件        2605  2011-11-04 14:33  Result.aspx.designer.cs
     文件        7615  2011-11-04 14:33  Web.config
     文件         125  2011-11-04 14:33  最新Asp.Net源码下载.url
     文件        3561  2011-11-04 14:33  admin\addsta.aspx
     文件        1491  2011-11-04 14:33  admin\addsta.aspx.cs
     文件        3186  2011-11-04 14:33  admin\addsta.aspx.designer.cs
     文件        4834  2011-11-04 14:33  admin\addstu.aspx
     文件        4084  2011-11-04 14:33  admin\addstu.aspx.cs
     文件        9642  2011-11-04 14:33  admin\addstu.aspx.designer.cs
     文件         458  2011-11-04 14:33  admin\Checkcode.aspx
     文件        4261  2011-11-04 14:33  admin\Checkcode.aspx.cs
     文件         808  2011-11-04 14:33  admin\Checkcode.aspx.designer.cs
     文件        3614  2011-11-04 14:33  admin\editsta.aspx
     文件        2667  2011-11-04 14:33  admin\editsta.aspx.cs
     文件        3524  2011-11-04 14:33  admin\editsta.aspx.designer.cs
     文件        4867  2011-11-04 14:33  admin\editstu.aspx
     文件        2855  2011-11-04 14:33  admin\editstu.aspx.cs
     文件        9976  2011-11-04 14:33  admin\editstu.aspx.designer.cs
     文件        3641  2011-11-04 14:33  admin\login.aspx
............此处省略921个文件信息

评论

共有 条评论