2025-03-28 09:49:56 +08:00

25 lines
810 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Net;
using SuperMap.RealEstate.Launcher_WebSite;
namespace SuperMap.RealEstate.SoftWare
{
public partial class DefaultEx : SuperMap.RealEstate.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SetControlClosePopDialog(ButtonClose, "WebPlatform_Launch");
LaunchInfo _LaunchInfo = new LaunchInfo(LaunchType.Install);
if (Request["key"] != null)
_LaunchInfo.GroupName = Request["key"];
if (Request["text"] != null)
InstallLink.InnerText = Request["text"];
InstallLink.HRef = _LaunchInfo.GetUrlProtocol();
}
}
}