RoadFlow2.1 临时演示

Set_Step.aspx.cs 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. namespace WebForm.Platform.WorkFlowDesigner
  8. {
  9. public partial class Set_Step : Common.BasePage
  10. {
  11. protected RoadFlow.Platform.WorkFlow bworkFlow = new RoadFlow.Platform.WorkFlow();
  12. protected RoadFlow.Platform.DBConnection bdbConn = new RoadFlow.Platform.DBConnection();
  13. protected RoadFlow.Platform.WorkFlowButtons bworkFlowButtons = new RoadFlow.Platform.WorkFlowButtons();
  14. protected RoadFlow.Platform.AppLibrary bappLibrary = new RoadFlow.Platform.AppLibrary();
  15. protected string appLibraryTypes = string.Empty;
  16. protected string stepID = string.Empty;
  17. protected string stepX = string.Empty;
  18. protected string stepY = string.Empty;
  19. protected string stepWidth = string.Empty;
  20. protected string stepHeight = string.Empty;
  21. protected void Page_Load(object sender, EventArgs e)
  22. {
  23. appLibraryTypes = bappLibrary.GetTypeOptions();
  24. stepID = Request.QueryString["id"];
  25. stepX = Request.QueryString["x"];
  26. stepY = Request.QueryString["y"];
  27. stepWidth = Request.QueryString["width"];
  28. stepHeight = Request.QueryString["height"];
  29. }
  30. }
  31. }