RoadFlow2.1 临时演示

Default.aspx.cs 594B

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