ZHJA_HJGL/HJGL_ZH/FineUIPro.Web/APPDownload.aspx.cs

19 lines
414 B
C#

using System;
using System.Web.UI;
using BLL;
namespace FineUIPro.Web
{
public partial class APPDownload : Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.Image1.ImageUrl = "~/" + BLL.Const.APPImageUrl;
this.HyperLink3.NavigateUrl = Funs.APPUrl;
}
}
}
}