protected void Page_Load(object sender, EventArgs e)
        {
            string id = Request.QueryString["id"];

            Complaint = DataHelper.GetComplaint(Convert.ToInt32(id));

            NavLink = "/" + StructsHelper.ComplaintObjTypeName[Complaint.ObjectType] + ".aspx?id=" + Complaint.ObjectId.ToString();
        }
Ejemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string id = Request.QueryString["id"];

            Complaint = DataHelper.GetComplaint(Convert.ToInt32(id));
        }