NetIPInterface.aspx.cs 693 B

1234567891011121314151617181920212223242526272829
  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 LYFZ.WeixinServers.WeiXinAPP
  8. {
  9. public partial class NetIPInterface : System.Web.UI.Page
  10. {
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. if (this.Request.QueryString["CloudSelectionUrl"] != null)
  14. {
  15. WriteContent(Global.CloudSelectionUrl);
  16. }
  17. else
  18. {
  19. WriteContent(Global.NetIPUrl);
  20. }
  21. }
  22. private void WriteContent(string str)
  23. {
  24. Response.Output.Write(str);
  25. }
  26. }
  27. }