📄 tijiaorizhi.aspx.cs
字号:
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 COM.OA.Entity;
using COM.OA.BLL;
using System.Collections.Generic;
public partial class qs_rizhi_Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//登陆的人到发送人
users loginuser =Session["loginuser"] as users;
if (loginuser == null)
{
this.Response.Write(string.Format(GetRedirect.ALLREDIRECT, "../login.aspx"));
return;
}
else
{
string LoginName = loginuser.u_username;
this.txtUname.Text = LoginName;
}
}
protected void btChongZhi_Click(object sender, EventArgs e)
{
this.txtBiaoTi.Text = "";
this.ftbNeiRong.Text = "";
}
protected void btTiJiao_Click(object sender, EventArgs e)
{
DateTime aa = DateTime.Now;
string uname = this.txtUname.Text;
//取姓名ID
string where1 = "u_username='{0}'";
where1 = string.Format(where1, uname);
IList<users> listuname = usersBLL.Select(where1);
users user = listuname[0];
int userId = user.u_id;
string biaoti = this.txtBiaoTi.Text;
string neirong = this.ftbNeiRong.Text;
worklog rizhi = new worklog();
rizhi.w_title = biaoti;
rizhi.w_content = neirong;
rizhi.w_u_id = userId;
rizhi.w_sendtime = aa;
rizhi.w_state = 0;
rizhi.w_clicks = 0;
rizhi.w_readtime = DateTime.Parse("2008-01-01");
worklogBLL.Insert(rizhi);
this.Response.Redirect("rizhijilu.aspx");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -