1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace LYFZ.WeixinServers.WeiXinAPP
- {
- public partial class NetIPInterface : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (this.Request.QueryString["CloudSelectionUrl"] != null)
- {
- WriteContent(Global.CloudSelectionUrl);
- }
- else
- {
- WriteContent(Global.NetIPUrl);
- }
- }
- private void WriteContent(string str)
- {
- Response.Output.Write(str);
- }
- }
- }
|