Пример #1
0
 public static string UpdateTQ(string RelationPaperTemp_id, string TestQuestions_id)
 {
     try
     {
         Model_RelationPaperTemp model = new BLL_RelationPaperTemp().GetModel(RelationPaperTemp_id);
         if (model != null)
         {
             model.TestQuestions_Id = TestQuestions_id;
             if (new BLL_RelationPaperTemp().Update(model))
             {
                 return("1");
             }
             else
             {
                 return("");
             }
         }
         else
         {
             return("");
         }
     }
     catch (Exception ex)
     {
         return("");
     }
 }
Пример #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            RelationPaperTemp_id       = Request["RelationPaperTemp_id"].Filter();
            strTestpaperViewWebSiteUrl = pfunction.GetResourceHost("TestWebSiteUrl");
            CreateUser = FloginUser.UserId;
            if (!IsPostBack)
            {
                Model_RelationPaperTemp modelRPT = new BLL_RelationPaperTemp().GetModel(RelationPaperTemp_id);
                string Two_WayChecklistDetail_Id = string.Empty;
                string TestQuestions_Id          = string.Empty;
                if (modelRPT != null)
                {
                    Two_WayChecklistDetail_Id = modelRPT.Two_WayChecklistDetail_Id;
                    TestQuestions_Id          = modelRPT.TestQuestions_Id;
                    //除了已存在之外的所有题
                    string sqlTQ = string.Format(@" select ROW_NUMBER() OVER(ORDER BY Two_WayChecklistDetailToTestQuestions_Id) AS R_N 
,twtq.TestQuestions_Id 
from Two_WayChecklistDetailToTestQuestions twtq
inner join [dbo].[TestQuestions] tq on tq.TestQuestions_Id=twtq.TestQuestions_Id
inner join [dbo].[ResourceToResourceFolder] rtrf on rtrf.ResourceToResourceFolder_Id=tq.ResourceToResourceFolder_Id
 where Two_WayChecklistDetail_Id='{0}' and twtq.TestQuestions_Id<>'{1}'"
                                                 , Two_WayChecklistDetail_Id
                                                 , TestQuestions_Id);
                    rptTQ.DataSource = Rc.Common.DBUtility.DbHelperSQL.Query(sqlTQ).Tables[0];
                    rptTQ.DataBind();
                }
            }
        }