RoadFlow2.1 临时演示

Login.aspx.cs 623B

1234567891011121314151617181920212223242526272829303132
  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 Login : WebForm.Common.BasePage
  10. {
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. }
  14. protected override bool CheckApp()
  15. {
  16. return true;
  17. }
  18. protected override bool CheckUrl(bool isEnd = true)
  19. {
  20. return true;
  21. }
  22. protected override bool CheckLogin(bool isRedirect = true)
  23. {
  24. return true;
  25. }
  26. }
  27. }