| 12345678910111213141516171819202122232425262728293031 |
- using HySoft.Common;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace HySoft.BaseCallCenter.Web.telmanage
- {
- public partial class callinreasonls : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- LoginUser users = new LoginUser(Context);
- hidUserID.Value = users.UserID.ToString();
- if (!IsPostBack)
- {
- if (!string.IsNullOrEmpty(Request.QueryString["callid"]))
- {
- string callid = Request.QueryString["callid"].ToString();
- hidcallid.Value = callid;
- }
- if (!string.IsNullOrEmpty(Request.QueryString["tel"]))
- {
- hidTel.Value = Request.QueryString["tel"].ToString();
- }
- }
- }
- }
- }
|