// Open web.config file
XmlDocument doc = new XmlDocument();
doc.Load(Server.MapPath("../web.config"));
string strSel;
//Use an XPath query to look up the
//authentication element
strSel = "/configuration/system.web/authentication";
XmlNode node = doc.SelectSingleNode(strSel);
//Get the authentication mode
string authMode = node.Attributes["mode"].Value;