市长热线演示版

seatmonitoringlist.aspx.cs 548B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. namespace HySoft.BaseCallCenter.Web.telmanage
  8. {
  9. public partial class seatmonitoringlist : System.Web.UI.Page
  10. {
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. if (!this.IsPostBack)
  14. {
  15. Response.Expires = -1;
  16. spanStartMonitorTime.InnerHtml = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  17. }
  18. }
  19. }
  20. }