protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { txtDomain.Text = WebConfig.DomainName(); LabelAppName.Text = "";// WebConfig.AppName(); HostName.InnerText = System.Net.Dns.GetHostName(); if (User.Identity.Name == "") { txtUserName.Text = "mif"; } else { txtUserName.Text = User.Identity.Name; } txtUserName.Focus(); if (DBConnection.CurrentDB != "Production") { LabelTrain.Text = DBConnection.CurrentDB; LabelTrain.Visible = true; } string authenticationMethod = WebConfig.getValuebyKey("AuthenticateMethod"); if (authenticationMethod == "NameOnly") { rfPassword.Enabled = false; } } }
public string DomainNameTest() { string result = WebConfig.DomainName(); return(result); // TODO: add assertions to method WebConfigTest.DomainNameTest() }