Changes between Initial Version and Version 2 of Ticket #6343
- Timestamp:
- Oct 1, 2010, 3:23:04 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6343
- Property Keywords asp.net ajax async postback removed
-
Ticket #6343 – Description
initial v2 3 3 STEPS TO REPRODUCE: 4 4 5 1. Create a new aspx project in Visual Studio 2008.6 2. Include the fckeditor folder7 3. Include the ajax toolkit binary and the FCK asp wrapper binary file in the bin folder of the project.8 3. Add a page named testFCK to the site with the following code:5 1. Create a new aspx project in Visual Studio 2008. 6 2. Include the fckeditor folder 7 3. Include the ajax toolkit binary and the FCK asp wrapper binary file in the bin folder of the project. 8 3. Add a page named testFCK to the site with the following code: 9 9 10 10 testFCK.aspx 11 11 {{{ 12 12 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="testFCK.aspx.cs" Inherits="testFCK" %> 13 13 … … 41 41 </body> 42 42 </html> 43 43 }}} 44 44 45 45 testFCK.aspx.cs 46 46 {{{ 47 47 using System; 48 48 using System.Web; … … 71 71 } 72 72 } 73 74 4. Open the site up in the debugger.75 5. Click the button labeled "partial". Note that the first click does nothing (because it causes an error before the Page_Load method). Also note that the button works the 2nd/4th/6th etc... time.76 6. Click the button labeled "full". Note that it works every time.73 }}} 74 4. Open the site up in the debugger. 75 5. Click the button labeled "partial". Note that the first click does nothing (because it causes an error before the Page_Load method). Also note that the button works the 2nd/4th/6th etc... time. 76 6. Click the button labeled "full". Note that it works every time. 77 77 78 78 The testing environment I'm running this on is Visual Studio 2008, Microsoft Windows XP SP3. Tested on Firefox 3.6.10, but I'm pretty sure I've seen it happen in current versions of IE and Chrome as well.