Add
LIVE SEARCH
to your browser!
Microsoft.com
All DevCenters
MSDN Home
MSDN Code Gallery:
Code Gallery Home
|
Browse Gallery
|
Share Code
|
Help and FAQs
Internet Explorer 8 Beta 1 Whitepapers
Home
Releases
Discussions
People
License
Close
RSS
All Resource Updates
Discussions
Releases
Wiki
RSS
Comments
|
Print
|
Page Info
|
Change History (all pages)
Search Wiki:
Home
Internet Explorer 8 Beta 1 for Developers Whitepapers
Learn more about the new features in Internet Explorer 8 Beta 1 for Developers.
Click here to download all the whitepapers at once:
XPS format
|
PDF format
Introduction
Introduction
How do I keep my site working with Internet Explorer 8 Beta 1 for Developers?
User-Agent String and Version Vector
Manage Add-Ons
Per-Site ActiveX
Non-Admin ActiveX Controls
Zoom v2
W3C's ARIA support
Loosely-coupled Internet Explorer
Automatic Crash Recovery
How do I make my site light up with Internet Explorer 8 Beta 1 for Developers?
Activities
WebSlices
CSS 2.1 Compliance
Versioning and IE Modes
Printing Improvements
DOM Core Improvements
HTML Improvements and ACID2
Improved Namespace Support
Selectors API
Data URI Support
Versioning and Cross-document Interaction
Improved Protected Mode API Support
Circular Memory Leak Mitigation
Platform Performance Improvements
Developer Tools
Better AJAX Development
Last edited
Mar 6 at 12:23 AM
by
mtevenanMSFT
, version 8
Comments
gpgo
wrote
Mar 16 at 5:44 AM
Internet Explore 8 Beta, I lost my menu, not able to defrag, text and pictures jagged, McAfee has a problem, and problems downloading...I am sorry I tried IE 8 Beta, and now it will not let me delete IE 8 Beta...why...I need help, please email me or call me 727-576-0099, my name is George Dolan, I would like some help and please let me know whats going wrong with this browser...please...
marcusgueiros
wrote
Mar 16 at 6:35 AM
i
Dealitem_com
wrote
Mar 20 at 1:49 PM
IE8 test with Dealitem.com
Tried my site and looks like Microsoft should look at it too. images in frames are acting little wiered.
Also in source code for home page if I replace these lines
</div>
<br />
<table width=100%>
to
</div>
<br />
<table width=100%>
sites looks very different.
Scroll bars act differently.
Multiline edit does not work properly.
I am sure MS guys are working on it.
I would like to be part of testing and would create couple of activites and webslices so that deal site owners can download in future
Dealitem_com
wrote
Mar 20 at 1:55 PM
FROM :
</div>
<br /> & n b s p ;
<table width=100%>
to
</div>
<br />
<table width=100%>
this on dealitem.com home page code (line no 325) makes a big difference, but it works fine in IE7 and Firefox and others
BARTLETT27
wrote
Mar 23 at 2:24 PM
FOUND PROBLEM WITH MANUAL UPDATES FOR XP, RUNS A LOT SLOWER THAT IE6/7.
OTHER THAN THAT EASY TO USE AND RUNS AS GOOD AS IE7 .
JEFF
BrentLamborn
wrote
Mar 25 at 9:22 PM
Baretlett27 I agree. It's much much slower as far as how it behaves when filling out a webform (ie, this very comment!) otherwise it seems pretty good for a Beta 1. I too had to do a manual update on my XP machine.
discjockey49
wrote
Apr 17 at 4:03 AM
First off to be clear I am a WIONDOWS USER. I have had problems with IE 7, I like checking out the betas, but just a little "trigger shy" at this point because I didn't like Firefox's 3 Beta, and I admit I WAS a Firefox user (not all the time). I don't even like the current release for everyone (2.0.1.3) I for some reason as a kinda-noobie cannot figure out why the.aspx (???) dosn't work over at FF 2.0.1.3, that is their problem unless it is banned from this board, but I use that as it pops up when I listen to radio on Windows and most radio stations are set to run on WMP, so by default, I beieve this does belong here, as I in reality, as I write this, admit I use Windows more than FireFox., especially since as of now I don't have FF on here.They are having some problems, that I am not educatd at. So I reformatted and am using IE 7 (maybe pro, I have before) EXCLUSIVELY right now. FF is not even loaded at this time. 2.0.13 just out is too slow. If someone can explain to me about the security issues, such as popups, as the pop up blocker doesn't work to my satisfaction, things like that on 7, and I have tried many, I would probably not even re-load Fire Fox. Can someone please help me with IE 7 or am I a candidate for IE 8 Beta with that IE7 button, with my security fears? Or give me some other forums t go to? I don't dare use Safri. I used it abut 3 hours. I am running XP PRO IE 7, willing to run IE 8 Beta as I, unless I read wrong, there is more security there in IE 8 Beta. I am well aware of the chances of using Betas I am not that new so I am not asking for miracles, just a little help, and I would be glad to download IE 8 Beat.
XForms
wrote
Apr 20 at 9:22 AM
You are speaking of "Interoperability and compatibility" in http://www.microsoft.com/windows/products/winfamily/ie/ie8/features.mspx but you don't tell compatibile with what ? For example is it compatibile with XForms ?
vbilovus
wrote
Apr 29 at 11:59 AM
Incorrect work of DHTML: when you will try to set ACTION and ID attributes of the form, the METHOD attribute will automatically set to “GET” (see example)
<html>
<head>
<title>Internet Explorer 8 Beta 1 defect</title>
<style>
INPUT
{
text-align:left;
}
</style>
<script type="text/javascript" language="JavaScript">
myFunction=function(aStep)
{
var frm = document.createElement( "FORM" );
document.body.appendChild( frm );
var result = "result:\n\n\t step 1: " + frm.method;
if (aStep != 6)
{
frm.action="http://www.google.com/";
result += "\n\t step 2: " + frm.method;
};
frm.method = "post";
result += "\n\t step 3: " + frm.method;
if (aStep != 5)
{
frm.id = "test";
result += "\n\t step 4: " + frm.method;
}
frm.innerHTML = result.replace(/\n/g,"<br>")
alert(result)
}
</script>
</head>
<body>
<form>
<input type="Hidden" name="sid">
<input type="Button" value="step 1: Check FORM.METHOD" onclick="alert('step 1 :' + this.form.method)"><br>
<input type="Button" value="step 2: Set ACTION to something and re-check FORM.METHOD" onclick="this.form.action='http://www.google.com/'; alert('step 2 :' + this.form.method)"><br>
<input type="Button" value="step 3: set FORM.METHOD to POST and re-check FORM.METHOD" onclick="this.form.method='post'; alert('step 3 :' + this.form.method)"><br>
<input type="Button" value="step 4: Set FORM.ID to something and re-check FORM.METHOD" onclick="this.form.id='test1'; alert('step 4 :' + this.form.method); window.location.reload(true)"><br><br><br>
Try do the same dynamically<br>
<input type="Button" value="step 5: Create FORM, set ACTION to something, set FORM.METHOD = POST, don't set FORM.ID and re-check FORM.METHOD" onclick="myFunction(5)"><br>
<input type="Button" value="step 6: Create FORM, don't set ACTION to something, set FORM.METHOD = POST, set FORM.ID and re-check FORM.METHOD" onclick="myFunction(6)"><br>
<input type="Button" value="step 7: Create FORM, set ACTION to something, set FORM.METHOD = POST, set FORM.ID to something and re-check FORM.METHOD" onclick="myFunction()"><br>
</form>
</body>
</html>
Sign in to add a comment
Current Release
All Whitepapers
Wed Mar 5 2008 at 5:00 AM
More Tags ...
Popular Tags
.NET
.NET 1.1
.NET 2.0
.NET 3.0
.NET 3.5
Addin
ADO.NET
AJAX
ASP.NET
ASP.NET 2.0
C#
C# 3.0
C++
CMS
CRM
Dynamics
Entity Data Model
Entity Framework
Hotfix
Internet Explorer
LINQ
LINQ to SQL
MSCRM
Office 2007
Samples
security
SharePoint
silverlight
SQL Server
tfs
Visual Basic
Visual C#
Visual C++
Visual Studio
Visual Studio 2005
Visual Studio 2008
VSTO
VSX
WCF
Windows Forms
Windows Mobile
WPF
Manage Your Profile
Legal
Contact Us
MSDN Flash Newsletter
© 2008 Microsoft Corporation. All rights reserved.
Terms of Use
Trademarks
Privacy Statement
Updating...