Beispiel #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     Verify.Visible = false;
     if (rbValid.SelectedValue == "Patentable")
     {
         admin_status   = "5";
         Verify.Visible = true;
     }
     else if (rbValid.SelectedValue == "Not-Patentable")
     {
         admin_status   = "4";
         Verify.Visible = true;
     }
     else if (rbValid.SelectedValue == "A_Contact")
     {
         admin_status   = "4";
         Verify.Visible = true;
     }
     if (Request.QueryString["x"] != null)
     {
         if (Session["pwalletID"] != null)
         {
             if (Session["pwalletID"].ToString() != "")
             {
                 admin = Session["pwalletID"].ToString();
             }
             else
             {
                 Response.Redirect("../lo.aspx");
             }
         }
         else
         {
             Response.Redirect("../lo.aspx");
         }
         pID          = Request.QueryString["x"].ToString();
         swallet      = t.getSwalletByID(pID);
         lt_mi        = t.getPtInfoByUserID(pID);
         lt_p         = t.getPwalletDetailsByID(lt_mi[0].log_staff);
         lt_tm_office = z.getPtOfficeDetailsByID(lt_mi[0].log_staff);
         lt_rep       = t.getRepListByUserID(lt_mi[0].log_staff);
         lt_stage     = t.getStageByUserID(lt_mi[0].log_staff);
         lt_app       = t.getApplicantByvalidationID(lt_mi[0].log_staff);
         lt_inv       = t.getInventorByvalidationID(lt_mi[0].log_staff);
         lt_assinfo   = t.getAssignment_infoByvalidationID(lt_mi[0].log_staff);
         lt_xpri      = t.getPriority_infoByvalidationID(lt_mi[0].log_staff);
         for (int i = 0; i < lt_tm_office.Count; i++)
         {
             xcomments          = xcomments + "<tr>";
             xcomments          = xcomments + "<td align=\"center\" colspan=\"2\">";
             xcomments          = xcomments + "<strong>" + lt_tm_office[i].xcomment.ToUpper() + "</strong><br />";
             lt_x_admin_details = z.getTmAdminDetailsByID(lt_tm_office[i].xofficer);
             if (lt_x_admin_details.Count > 0)
             {
                 xcomments = xcomments + "COMMENT BY: <strong>" + lt_x_admin_details[0].xname.ToUpper() + "( " + z.getRoleNameByID(lt_x_admin_details[0].xroleID).ToUpper() + " )</strong><br />   Date: <strong>" + lt_tm_office[i].reg_date.ToUpper() + "</strong>";
             }
             else
             {
                 xcomments = xcomments + "COMMENT BY: <strong> NA</strong>";
             }
             xcomments = xcomments + "</td>";
             xcomments = xcomments + "</tr>";
             if (lt_tm_office[i].xdoc1 != "")
             {
                 xcomments = xcomments + "<tr>";
                 xcomments = xcomments + "<td colspan=\"2\" align=\"center\">";
                 xcomments = xcomments + "View Document 1: <a href=" + lt_tm_office[i].xdoc1 + " target='_blank'>View</a>";
                 xcomments = xcomments + "</td>";
                 xcomments = xcomments + "</tr>";
             }
             if (lt_tm_office[i].xdoc2 != "")
             {
                 xcomments = xcomments + "<tr>";
                 xcomments = xcomments + "<td colspan=\"2\" align=\"center\">";
                 xcomments = xcomments + "View Document 2: <a href=" + lt_tm_office[i].xdoc2 + " target='_blank'>View</a>";
                 xcomments = xcomments + "</td>";
                 xcomments = xcomments + "</tr>";
             }
             if (lt_tm_office[i].xdoc3 != "")
             {
                 xcomments = xcomments + "<tr>";
                 xcomments = xcomments + "<td colspan=\"2\" align=\"center\">";
                 xcomments = xcomments + "View Document 3: <a href=" + lt_tm_office[i].xdoc3 + " target='_blank'>View</a>";
                 xcomments = xcomments + "</td>";
                 xcomments = xcomments + "</tr>";
             }
             if (lt_tm_office[i].admin_status == "3")
             {
                 xcomments = xcomments + "<tr>";
                 xcomments = xcomments + "<td class=\"coltbbg\" colspan=\"2\" align=\"center\">";
                 xcomments = xcomments + "--- SUPPORTING SEARCH DOCUMENTS ---";
                 xcomments = xcomments + "</td>";
                 xcomments = xcomments + "</tr>";
                 xcomments = xcomments + "<tr>";
                 xcomments = xcomments + "<td align=\"right\">";
                 xcomments = xcomments + "Attached Document:";
                 xcomments = xcomments + "</td>";
                 xcomments = xcomments + "<td>";
                 if ((swallet.search_str != "") && (swallet.search_str != null))
                 {
                     xcomments = xcomments + "<a href=view_search_details.aspx?x=" + pID + " target='_blank'>View</a>";
                 }
                 else
                 {
                     xcomments = xcomments + "NONE";
                 }
                 xcomments = xcomments + "</td>";
                 xcomments = xcomments + "</tr>";
                 xcomments = xcomments + "<tr>";
                 xcomments = xcomments + "<td class=\"coltbbg\" colspan=\"2\" align=\"center\">";
                 xcomments = xcomments + "&nbsp;";
                 xcomments = xcomments + "</td>";
                 xcomments = xcomments + "</tr>";
             }
         }
     }
     else
     {
         Response.Redirect("./profile.aspx");
     }
 }