• 大小: 8KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: C#
  • 标签: 投票系统  

资源简介

简单的入门级投票系统,基于ASP.net+sql数据库,适合初学者参考

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Configuration;
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;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender EventArgs e)
    {
        if (!IsPostBack)
        {
            string[] pollselect = new string[] { “会“ “不会“ “不知道“ };
            RadioButtonList1.DataSource = pollselect;
            RadioButtonList1.DataBind();
        }
    }
    protected void Button1_Click(object sender EventArgs e)
    {
        Response.Redirect(“pollresult.aspx?result=“ + RadioButtonList1.SelectedIndex.ToString());
        RadioButtonList1.SelectedIndex = -1;
    }
}

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

     文件        843  2008-04-20 18:31  网上投票系统\images\poll1.GIF

     文件        843  2008-04-20 18:30  网上投票系统\images\poll2.GIF

     文件        843  2008-04-20 18:27  网上投票系统\images\poll3.GIF

     文件       1015  2008-04-22 19:19  网上投票系统\poll.aspx

     文件        829  2008-04-22 19:02  网上投票系统\poll.aspx.cs

     文件       1756  2008-04-22 19:06  网上投票系统\pollresult.aspx

     文件       2489  2008-04-22 19:15  网上投票系统\pollresult.aspx.cs

     文件       1546  2008-04-20 17:54  网上投票系统\Web.Config

     目录          0  2008-04-22 19:23  网上投票系统\App_Data

     目录          0  2008-04-20 18:31  网上投票系统\images

     目录          0  2008-04-22 19:19  网上投票系统

    I.A....       379  2010-01-21 16:41  下载说明.txt

    I.A....      4356  2010-01-21 16:34  说明.htm

    I.A....       112  2009-07-28 10:19  A5下载- 更全的站长资源平台.url

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

                15011                    14


评论

共有 条评论