• 大小: 266KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-16
  • 语言: C#
  • 标签:

资源简介

ASP.NET投票系统课程设计作业ASP.NET投票系统课程设计作业ASP.NET投票系统课程设计作业

资源截图

代码片段和文件信息

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.OleDb;

public partial class showResult : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        string voteID = “1“;
        if (Request.QueryString[“voteId“] != null)
            voteID = Request.QueryString[“voteid“].ToString();
        OleDbConnection con = DB.createConnection();
        con.Open();

        //查询对应的投票条目
        OleDbCommand cmdItem = new OleDbCommand(“select * from voteDetailsvoteMaster where voteDetails.voteID=“ + voteID + “and voteMaster.voteID=“ + voteID con);
        OleDbDataReader sdr = cmdItem.ExecuteReader();
        int i = 0;
            Response.Write(“
“);
        while (sdr.Read())
        {
            if(i++ == 0)
                Response.Write(“总票数-“ + sdr.GetInt32(6).ToString() + “
“);
            Response.Write(““ + sdr.GetString(2)+“-“+sdr.GetInt32(3).ToString()+“
“);
        }
            Response.Write(“
“);
        sdr.Close();

        //关闭连接
        con.Close();
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     312832  2009-12-29 21:58  ASP.NET投票系统课程设计作业\ASP.NET投票系统课程设计报告.doc

     文件        719  2009-12-24 21:41  ASP.NET投票系统课程设计作业\Vote\App_Code\DB.cs

     文件        128  2009-12-26 01:43  ASP.NET投票系统课程设计作业\Vote\App_Data\vote.ldb

     文件     217088  2009-12-26 01:41  ASP.NET投票系统课程设计作业\Vote\App_Data\vote.mdb

     文件        449  2009-12-24 22:23  ASP.NET投票系统课程设计作业\Vote\showResult.aspx

     文件       1395  2009-12-25 01:54  ASP.NET投票系统课程设计作业\Vote\showResult.aspx.cs

     文件       2829  2009-12-25 01:17  ASP.NET投票系统课程设计作业\Vote\vote.aspx

     文件       2669  2009-12-25 01:45  ASP.NET投票系统课程设计作业\Vote\vote.aspx.cs

     文件       7814  2009-12-24 21:46  ASP.NET投票系统课程设计作业\Vote\Web.Config

     目录          0  2009-12-26 02:20  ASP.NET投票系统课程设计作业\Vote\App_Code

     目录          0  2009-12-26 02:20  ASP.NET投票系统课程设计作业\Vote\App_Data

     目录          0  2009-12-26 02:20  ASP.NET投票系统课程设计作业\Vote

     目录          0  2009-12-29 22:01  ASP.NET投票系统课程设计作业

----------- ---------  ---------- -----  ----

               545923                    13


评论

共有 条评论

相关资源