Example #1
0
 public PageConstraintsTests()
 {
     //
     // TODO: aggiungere qui la logica del costruttore
     //
     svc = new PageServices();
 }
Example #2
0
 public PageMoveWorkflowTests()
 {
     //
     // TODO: aggiungere qui la logica del costruttore
     //
     svc = new PageServices();
     csvc = new ContentServices();
 }
Example #3
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack) {
            string idPageElement = Request.QueryString["idpel"];
            iditemamm = Convert.ToInt32(Request.QueryString["iditem"]);
            PageServices pgserv = new PageServices();

            PageElementDTO pel = new PageElementDTO();
            pel = pgserv.GetPageelementByPageelementID(Convert.ToInt32(idPageElement));

            RawHtml row = new RawHtml();
            row = pgserv.GetRawHtmlById(pel.Rawhtmlid);
            edit.Text = row.Value;
            RawHtmlId = row.Rawhtmlid;
        }
    }