RoadFlow2.1 临时演示

Test.aspx.cs 1004B

12345678910111213141516171819202122232425262728293031323334
  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
  8. {
  9. public partial class Test : Common.BasePage
  10. {
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. Response.Write(
  14. new RoadFlow.Platform.WorkFlowTask().StartFlow
  15. ("A6509C1B-F49F-47A6-829D-EC43B9210EB2".ToGuid(),
  16. new List<RoadFlow.Data.Model.Users>() { CurrentUser }, "xxxxxxxxxxxxxxxxxxxxxx",
  17. "8542C297-39FE-4622-B537-FDC54F58C0E9"));
  18. }
  19. protected override bool CheckApp()
  20. {
  21. return true;//return base.CheckApp();
  22. }
  23. protected override bool CheckUrl(bool isEnd = true)
  24. {
  25. return true; //base.CheckUrl(isEnd);
  26. }
  27. protected override bool CheckLogin(bool isRedirect = true)
  28. {
  29. return true; //base.CheckLogin(isRedirect);
  30. }
  31. }
  32. }