Example #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                #region Get id

                int id;

                if (string.IsNullOrEmpty(Request.QueryString["id"]))
                {
                    throw new Exception("�Բ����������ʵ�ҳ�治����");
                }

                try
                {
                    id = int.Parse(Request.QueryString["id"]);
                }
                catch
                {
                    throw new Exception("�Բ����������ʵ�ҳ�治����");
                }

                #endregion

                LabMS.BLL.Vote vote = new LabMS.BLL.Vote();
                LabMS.Model.Vote voteInfo = vote.GetModel(id);

                VoteStartTime.Text = voteInfo.VoteStartTime.Value.ToString("yyyy��MM�� HH:mm");
                VoteTitle.Text = voteInfo.VoteTitle;
                VoteID.Value = voteInfo.key.ToString();

                UserID.Value = base.UserID;
            }
        }
Example #2
0
        /// <summary>
        /// �����ݵ�GridViewVoteList
        /// </summary>
        protected void BindData()
        {
            LabMS.BLL.Vote vote = new LabMS.BLL.Vote();
            DataSet ds = new DataSet();

            ds = vote.GetList(" 1=1 order by [key] desc");

            ds = HandleData(ds);

            GridViewVoteList.DataSource = ds.Tables[0].DefaultView;
            GridViewVoteList.DataBind();
        }
Example #3
0
        protected string CreateCharts(LabMS.Model.Vote vi)
        {
            System.Text.StringBuilder result = new System.Text.StringBuilder();
            System.Text.StringBuilder sbXml = new System.Text.StringBuilder();

            LabMS.BLL.Vote vote = new LabMS.BLL.Vote();
            LabMS.BLL.VoteAnswer voteAnswer = new LabMS.BLL.VoteAnswer();
            LabMS.BLL.VoteItem voteItem = new LabMS.BLL.VoteItem();
            LabMS.BLL.VoteRecordDetail voteRecordDetail = new LabMS.BLL.VoteRecordDetail();

            List<LabMS.Model.VoteItem> voteItems;
            List<LabMS.Model.VoteAnswer> voteAnswers;
            List<LabMS.Model.VoteRecordDetail> voteRecordDetails;

            string[] colors = new string[] {
                "F6BD0F",
                "8BBA00",
                "A66EDD",
                "F984A1",
                "CCCC00",
                "999999",
                "0099CC",
                "FF0000",
                "006F00",
                "0099FF",
                "FF66CC",
                "669966",
                "7C7CB4",
                "FF9933",
                "9900FF",
                "99FFCC",
                "CCCCFF",
                "669900",
                "1941A5",
                "AFD8F8"
            };

            voteItems = voteItem.GetModelList(" VoteID = " + vi.key.ToString());

            Random random = new Random();

            foreach (LabMS.Model.VoteItem vii in voteItems)
            {
                sbXml = new System.Text.StringBuilder();
                sbXml.Append("<graph caption='");
                sbXml.Append(HandleString(vii.VoteItemContent));
                sbXml.Append("' xAxisName='评价项' yAxisName='票数' decimalPrecision='0' formatNumberScale='0'>");

                voteAnswers = voteAnswer.GetModelList(" VoteItemID = " + vii.key.ToString());

                int i = Math.Abs(random.Next());
                i = random.Next(i) / colors.Length;

                foreach (LabMS.Model.VoteAnswer vai in voteAnswers)
                {
                    voteRecordDetails = voteRecordDetail.GetModelList(
                        " VoteItemID = " +
                        vii.key.ToString() +
                        " and VoteAnswerID = " +
                        vai.key.ToString()
                    );

                    sbXml.Append(string.Format("<set name='{0}' value='{1}' color='{2}' />",
                       HandleString(vai.VoteAnswerContent), voteRecordDetails.Count, colors[i++ % colors.Length]));
                }
                sbXml.Append("</graph>");

                result.Append(
                        InfoSoftGlobal.FusionCharts.RenderChartHTML("../FusionCharts/FCF_Bar2D.swf",
                            "",
                            sbXml.ToString(), "item" + vii.key, "600", "200", false)
                    );
            }

            return result.ToString();
        }
Example #4
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                int id;
                #region Get id

                if (string.IsNullOrEmpty(Request.QueryString["id"]))
                {
                    Common.JShelper.JSAlert(Page, "err", "参数错误!");
                    return;
                }

                try
                {
                    id = int.Parse(Request.QueryString["id"]);
                }
                catch
                {
                    Common.JShelper.JSAlert(Page, "err", "参数错误!");
                    return;
                }
                #endregion

                LabMS.Model.Vote mVote = new LabMS.Model.Vote();
                #region Get  Vote

                LabMS.BLL.Vote bvote = new LabMS.BLL.Vote();
                mVote = bvote.GetModel(id);
                if (mVote == null)
                {
                    Common.JShelper.JSAlert(Page, "err", "参数错误!");
                    return;
                }
                #endregion

                #region Original and obsolete

                /*

                lbVName.Text = mVote.VoteTitle;
                lbContent.InnerHtml = "<div>";

                List<LabMS.Model.VoteItem> listVItem = new List<LabMS.Model.VoteItem>();
                List<LabMS.Model.VoteAnswer> listVAnswer = new List<LabMS.Model.VoteAnswer>();
                List<LabMS.Model.VoteRecordDetail> listVRDetail
                    = new List<LabMS.Model.VoteRecordDetail>();

                #region VoteItemList
                LabMS.BLL.VoteItem bVItem = new LabMS.BLL.VoteItem();
                listVItem = bVItem.GetModelList(" VoteID = " + mVote.key.ToString());
                if (listVItem == null)
                {
                    Common.JShelper.JSAlert(Page, "err", "参数错误!");
                    return;
                }
                #endregion

                int iTotal = 0;
                int iTotalD = 0;
                int iDetail = 0;
                float percent = 0.0f;

                foreach (LabMS.Model.VoteItem vi in listVItem)
                {
                    lbContent.InnerHtml += "<div>";
                    lbContent.InnerHtml += "     " + vi.VoteItemContent;

                    #region Get VoteItemDetail for total
                    LabMS.BLL.VoteRecordDetail bVRDetail = new LabMS.BLL.VoteRecordDetail();
                    listVRDetail = bVRDetail.GetModelList(" VoteItemID = " + vi.key.ToString());
                    #endregion

                    iTotal = listVRDetail.Count;
                    iTotalD = iTotal;
                    if (iTotalD == 0)
                    {
                        iTotalD = 1;
                    }
                    lbTotal.Text = "投票总数:" + iTotal.ToString();

                    #region VoteAnswerList
                    LabMS.BLL.VoteAnswer bVAnswer = new LabMS.BLL.VoteAnswer();
                    listVAnswer = bVAnswer.GetModelList(" VoteItemID = " + vi.key.ToString());

                    #endregion
                    foreach (LabMS.Model.VoteAnswer va in listVAnswer)
                    {
                        lbContent.InnerHtml += "<div>";
                        lbContent.InnerHtml += "          " + va.VoteAnswerContent;

                        #region Get VoteItemDetail for answer
                        bVRDetail = new LabMS.BLL.VoteRecordDetail();
                        listVRDetail = bVRDetail.GetModelList(" VoteItemID = " + vi.key.ToString()
                                                                                    + " and VoteAnswerID = " + va.key.ToString());
                        #endregion
                        iDetail = listVRDetail.Count;
                        percent = (float)iDetail / (float)iTotalD;
                        percent = percent * 100;
                        string strPercent = String.Format("{0:N2}", percent) + "%";
                        lbContent.InnerHtml += "          " + iDetail + "(" + strPercent.ToString() + ")";

                        lbContent.InnerHtml += "</div>";
                    }

                    lbContent.InnerHtml += "</div>";
                }

                lbContent.InnerHtml += "</div>";

                 */

                #endregion

                LiteralVote.Text = mVote.VoteTitle;
                LiteralStat.Text = CreateCharts(mVote);
            }
        }