微软推荐方法有三:
Parsing the User-Agent String
解析 user-agent 字符串
function getInternetExplorerVersion()
// Returns the version of Internet Explorer or a -1
// (indicating the use of another browser).
{
var rv = -1; // Return value assumes failure
if (navigator.appName == ‘Microsoft Internet Explorer’)
{
var ua = navigator.userAgent;
var re = new RegExp(”MSIE ([0-9]{1,}[.0-9]{0,})”);
if (re.exec(ua) != null)
rv = parseFloat( RegExp.$1 );
}
return rv;
}
function checkVersion()
{
var msg = “You’re not using Internet Explorer.”;
var ver = getInternetExplorerVersion();
if ( ver > -1 )
{
if ( ver >= 6.0 )
msg = “You’re using a recent copy of Internet Explorer.”
else
msg = “You should upgrade your copy of Internet Explorer.”;
}
alert( msg );
}
Using Conditional Comments
条件注释
Using ASP.NET’s HttpBrowserCapabilities Object
使用 asp.net HttpBrowserCapabilities 对象
private float getInternetExplorerVersion()
{
// Returns the version of Internet Explorer or a -1
// (indicating the use of another browser).
float rv = -1;
System.Web.HttpBrowserCapabilities browser = Request.Browser;
if (browser.Browser == “IE”)
rv = (float)(browser.MajorVersion + browser.MinorVersion);
return rv;
}
private void Page_Load(object sender, System.EventArgs e)
{
string msg;
double ver = getInternetExplorerVersion();
if (ver > 0.0)
{
if (ver >= 6.0)
msg = “You’re using a recent version of Internet Explorer.”;
else
msg = “You should upgrade your copy of Internet Explorer.”;
}
else
msg = “You’re not using Internet Explorer.”;
Label1.Text = msg;
}

在维道看到此消息,没啥说的,立刻下载使用,谁叫咱是做网页的呢。
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8) Gecko/20060321 Firefox/2.0a1
我能看到的变化是:
1.每个tab 标签右侧,独立的关闭按钮(类似于 opera或者 firefox+tab mix 插件)
2.session saver (似乎从 1.6x nightly build 某个版本就开始支持)
Bon Echo will retain all of the existing Firefox features, with improvements that:
* update the look and feel of the browser,
* improve and augment the capabilities for Bookmarks and History,
* improve the user experience of web browsing and tabbed browsing,
* improve and augment the capabilities for handling web feeds,
* improve the user experience of adding, removing and managing extensions,
* add new capabilities to protect users from dangerous extensions,
* improve and augment the capabilities for web search,
* make it easier to install and distribute the browser,
* include the latest security and stability updates,
* include new security features to protect users from phishing,
* update our end user documentation so it’s more useful to users looking for help
为了健康,大家离开电脑,出去走走吧…

以下为引用内容:
Geir Ivarsoy, the co-founder of Opera Software, passed away after a long battle with cancer.Geir along with Jon von Tetzchner developed the Opera browser, initially known as MultiTorg Opera, while working for a Norwegian Telecommunication company in 1993. In 1995 the two of them spun off their project and founded Opera Software.
At a board meeting in January of 2004, Geir (together with von Tetzchner) announced his wish to resign as a board member in Opera Software, though he remained active in the company even after that. In June of 05 he was elected as a member of the Nomination Committee of the company.
He passed away on March 9th; Opera employees will pay their respects to Geir at his funeral today at Grefsen Kirke in Oslo.
My condolences go out to his family, friends, and colleagues at Opera.
RIP Geir Ivarsoy.

dhtml goodies,大量的java script+css+AJAX实例和源代码.
opera 9 beta for ubnutu 版本,也就是windows下的 Windows Build 8265
A special dapper_i386.deb package addresses installation issues experienced by Ubuntu Dapper Drake users.
其它 opera 9 beta for linux 版本 下载列表
中文翻译部分与网页设计有关。
Changelog:
* Fix to make e-mail and news items display correctly when they are selected.
* Improved BitTorrent disk cache.
* DCC file transfers now displayed as a link in a private chat window.
* Added support for onmousewheel events.
支持鼠标滚轮事件
* Fix for canvas gradients and blur.
修正canvas的渐变色和模糊
* .Improved behavior of offsetParent, offsetTop, and offsetLeft.
改进 offsetParent, offsetTop, and offsetLeft
* Script events now report correct keyCode for insert, delete, home, end, pause/break, scroll lock and num lock keys.
这些键 insert, delete, home, end, pause/break, scroll lock and num lock 将返回正确的 keycode
* Added support for element.cssText.
支持 elment.cssText(拿到当前样式设置?或者 getAttribue(style)或者 currentStyle,runtimeStyle,document.defaultView.getComputedStyle(aaa,null).getPropertyValue(’background-color’))
* Allowed self closing SCRIPT tags in HTML documents.
允许(为了DOM+js?)
* Fix for SRC attribute in atom feed summaries.
修复 Atom 中 summaries SRC属性
* Allowed FTP downloading of files whose names contain colons ':'.
FTP 下载文件名中可以包括冒号 : 了
* Experimental fix to allow downloading of files larger than 4GB.
via http://my.opera.com/desktopteam/blog/show.dml/164154