CAESDO.Recruitment.Web.MasterPage.Page_Load C# (CSharp) Method

Page_Load() protected method

protected Page_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                //Populate the questions email and assembly version
                if (litAssemblyVersion != null) litAssemblyVersion.Text = AssemblyVersion;

                if (hlinkEmail != null)
                    hlinkEmail.NavigateUrl = "mailto:" + WebConfigurationManager.AppSettings["AppMailTo"] + "?subject=[" + WebConfigurationManager.AppSettings["AppName"] + "] " + AssemblyVersion + " <your question or comment>";
            }
        }