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; } } } }