I need to separate IE and FF browsers from others
it\'s a pseudo-code :
If (CurrentBrowser == IE(6+) or FF(2+) ) { ... } else { ... }
private void BindDataBInfo() { System.Web.HttpBrowserCapabilities browser = Request.Browser; Literal1.Text = ""; foreach (string key in browser.Capabilities.Keys) { Literal1.Text += "" + key + "" + browser[key] + ""; } Literal1.Text += ""; browser = null; }