RoadFlow2.1 临时演示

Instance.aspx.cs 483B

123456789101112131415161718
  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.WorkFlowTasks
  8. {
  9. public partial class Instance : Common.BasePage
  10. {
  11. protected string query = string.Empty;
  12. protected void Page_Load(object sender, EventArgs e)
  13. {
  14. query = "appid=" + Request.QueryString["appid"] + "&tabid=" + Request.QueryString["tabid"];
  15. }
  16. }
  17. }