UU跑腿标准版

callinreasonls.aspx.cs 948B

12345678910111213141516171819202122232425262728293031
  1. using HySoft.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8. namespace HySoft.BaseCallCenter.Web.telmanage
  9. {
  10. public partial class callinreasonls : System.Web.UI.Page
  11. {
  12. protected void Page_Load(object sender, EventArgs e)
  13. {
  14. LoginUser users = new LoginUser(Context);
  15. hidUserID.Value = users.UserID.ToString();
  16. if (!IsPostBack)
  17. {
  18. if (!string.IsNullOrEmpty(Request.QueryString["callid"]))
  19. {
  20. string callid = Request.QueryString["callid"].ToString();
  21. hidcallid.Value = callid;
  22. }
  23. if (!string.IsNullOrEmpty(Request.QueryString["tel"]))
  24. {
  25. hidTel.Value = Request.QueryString["tel"].ToString();
  26. }
  27. }
  28. }
  29. }
  30. }