51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
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;
|
|
|
|
public partial class GongGao_VoteAdd : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
ZWL.Common.PublicMethod.CheckSession();
|
|
}
|
|
}
|
|
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
|
|
{
|
|
ZWL.BLL.ERPVote Model = new ZWL.BLL.ERPVote();
|
|
Model.TitleStr = this.TextBox1.Text;
|
|
Model.ContentStr = this.TextBox2.Text;
|
|
Model.TimeStr = DateTime.Now;
|
|
Model.UserName = ZWL.Common.PublicMethod.GetSessionValue("UserName");
|
|
Model.ScoreStr = "";
|
|
for (int i = 0; i < Model.ContentStr.Split('|').Length; i++)
|
|
{
|
|
if (Model.ScoreStr.Trim().Length > 0)
|
|
{
|
|
Model.ScoreStr = Model.ScoreStr + "|0";
|
|
}
|
|
else
|
|
{
|
|
Model.ScoreStr = "0";
|
|
}
|
|
}
|
|
Model.Add();
|
|
|
|
//写系统日志
|
|
ZWL.BLL.ERPRiZhi MyRiZhi = new ZWL.BLL.ERPRiZhi();
|
|
MyRiZhi.UserName = ZWL.Common.PublicMethod.GetSessionValue("UserName");
|
|
MyRiZhi.DoSomething = "用户添加投票信息(" + this.TextBox1.Text + ")";
|
|
MyRiZhi.IpStr = System.Web.HttpContext.Current.Request.UserHostAddress.ToString();
|
|
MyRiZhi.Add();
|
|
ZWL.Common.MessageBox.ShowAndRedirect(this, "投票信息添加成功!", "Vote.aspx");
|
|
}
|
|
}
|