Before you start using VS2010 RC, knowing that the RC version was launched with a serious bug as reported on the link below.
The bug is related to the use of controls within containers in an ASP.Net application, and like almost every ASP.Net application has any container, it is impossible to migrate an application VS 2008 to VS 2010.
Before you start any work or migrate to the IDE of VS2010 RC, you know this bug. We charge them for a solution because the solution provided by Microsoft will only occur in
oh good. although I have seen somebody getting a wierd response.redirect() error with rc1 on these forums this morning as well so I am still a bit nervous about developing with it at work...
Guess I will just have to make sure I pay extra special attention to everything. Its not that long now until the real version will be released
Thank you for reporting this. I have just installed VS2010 RC1 on my home PC and I will try it out.
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
So far the bug has not surfaced for me. Has a demo page been published to illustrate the problem?
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
To MSDN users as a single download of am ISO image
To non-authenticated users as 5 files to be combined to make an ISO image.
You must burn the ISO image to a DVD in order to install it.
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
I will try to reproduce the problem in the morning.
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
I can see not that controls within the wizard do not appear in the Intellisense. I have updated the MS Connect report with the fact that I can reproduce the problem.
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace XhtmlAppCS {
public partial class VS2010Check {
/// <summary>
/// form1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// Wizard1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Wizard Wizard1;
/// <summary>
/// LabelFinish control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label LabelFinish;
}
}
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Applying the workaound suggested earlier, I modified the code as follows:
#region " Copyleft "
// <copyright file="VS2010Check.aspx.cs" company="Company">
// Copyright (c) 2010 All Right Reserved
// </copyright>
// <author>Clive Chinery</author>
// <email>findme@on.forums.asp.net</email>
// <date>2010-02-23</date>
// <summary>
// Copyright (C) 2010 Clive Chinery
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// </summary>
#endregion
namespace XhtmlAppCS
{
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class VS2010Check : System.Web.UI.Page
{
protected global::System.Web.UI.WebControls.CheckBox CheckBoxA;
protected global::System.Web.UI.WebControls.CheckBox CheckBoxB;
protected global::System.Web.UI.WebControls.Label LabelResult;
/// <summary>
/// Handles the Load event of the Page control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Handles the FinishButtonClick event of the Wizard1 control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.Web.UI.WebControls.WizardNavigationEventArgs"/> instance containing the event data.</param>
protected void Wizard1_FinishButtonClick(object sender, WizardNavigationEventArgs e)
{
this.LabelFinish.Text = "Result A:" + CheckBoxA.Checked.ToString() + " B:" + CheckBoxB.Checked.ToString();
}
}
}
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Instead of posting from Chrome, I will now post from Firefox, with the changes in
18pt:
#region " Copyleft "
// <copyright file="VS2010Check.aspx.cs" company="Company">
// Copyright (c) 2010 All Right Reserved
// </copyright>
// <author>Clive Chinery</author>
// <email>findme@on.forums.asp.net</email>
// <date>2010-02-23</date>
// <summary>
// Copyright (C) 2010 Clive Chinery
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// </summary>
#endregion
namespace XhtmlAppCS
{
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class VS2010Check : System.Web.UI.Page
{ protected global::System.Web.UI.WebControls.CheckBox CheckBoxA;
protected global::System.Web.UI.WebControls.CheckBox CheckBoxB;
protected global::System.Web.UI.WebControls.Label LabelResult;
/// <summary>
/// Handles the Load event of the Page control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Handles the FinishButtonClick event of the Wizard1 control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.Web.UI.WebControls.WizardNavigationEventArgs"/> instance containing the event data.</param>
protected void Wizard1_FinishButtonClick(object sender, WizardNavigationEventArgs e)
{ this.LabelFinish.Text = "Result A:"
+ CheckBoxA.Checked.ToString()
+ " B:" + CheckBoxB.Checked.ToString();
}
}
}
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
I appreciate your efforts and
suggestions in an attempt to "circumvent" this bug, but I find it impossible to use them in the development of any application.
Using your suggestion for a resolution that would change all the page frames
after this bug was fixed.
I suggest we all keep voting for this bug to try to expedite this solution.
I suggest we all keep voting for this bug to try to expedite this solution.
I totally agree with you on this.
rcury
Using your suggestion for a resolution that would change all the page frames after this bug was fixed.
If all the added lines were put into a region, deleting them one the bug is fixed should be only the work of a few seconds.
What is there is another bug that is shielded by this one? Circumventing this one would allow further testing.
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
I consider it essential that everyone finding this problem, endorses the MS Connect Report.
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Member
2 Points
10 Posts
A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 19, 2010 10:03 AM|rcury|LINK
Hi All,
Before you start using VS2010 RC, knowing that the RC version was launched with a serious bug as reported on the link below.
The bug is related to the use of controls within containers in an ASP.Net application, and like almost every ASP.Net application has any container, it is impossible to migrate an application VS 2008 to VS 2010.
Before you start any work or migrate to the IDE of VS2010 RC, you know this bug. We charge them for a solution because the solution provided by Microsoft will only occur in
https://connect.microsoft.com/VisualStudio/feedback/details/533071/controls-in-createuserwizard-wizardstep-not-visible-as-before
Tks,
Rubens Cury
All-Star
39486 Points
8916 Posts
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 19, 2010 11:41 AM|rtpHarry|LINK
I couldn't figure out if this was the same issue?
Just wondering if it was avoidable?
Member
482 Points
190 Posts
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 19, 2010 08:20 PM|anhphan|LINK
Yes, it's the same issue mentioned in the connect bug.
All-Star
39486 Points
8916 Posts
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 20, 2010 08:01 AM|rtpHarry|LINK
oh good. although I have seen somebody getting a wierd response.redirect() error with rc1 on these forums this morning as well so I am still a bit nervous about developing with it at work...
Guess I will just have to make sure I pay extra special attention to everything. Its not that long now until the real version will be released
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 22, 2010 11:01 AM|TATWORTH|LINK
Thank you for reporting this. I have just installed VS2010 RC1 on my home PC and I will try it out.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 22, 2010 12:10 PM|TATWORTH|LINK
So far the bug has not surfaced for me. Has a demo page been published to illustrate the problem?
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Member
2 Points
10 Posts
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 22, 2010 12:41 PM|rcury|LINK
I´m glad to hear it ! The VS 2010 RC1 is available for download ?
Maybe you can reproduce this issue following the step-by-step as demonstrated on referred bug link.
Tks,
Rubens Cury
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 22, 2010 01:31 PM|TATWORTH|LINK
VS2010 RC1 is available:
You must burn the ISO image to a DVD in order to install it.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Member
2 Points
10 Posts
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 22, 2010 01:52 PM|rcury|LINK
Hi Tatworth,
Sorry... actually my VSTS 2010 is already RC1 version. I´m confused about RC and RC1. RC and RC1 are the same isn´t it ?
But... can´t you reproduce the referred bug following the connect's link steps ?
Tks,
Rubens Cury
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 22, 2010 02:36 PM|TATWORTH|LINK
Rc1 and Rc are the same.
I will try to reproduce the problem in the morning.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 23, 2010 05:48 AM|TATWORTH|LINK
I can see not that controls within the wizard do not appear in the Intellisense. I have updated the MS Connect report with the fact that I can reproduce the problem.
The form I generated was:
<div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"><%@ Page Language="C#" AutoEventWireup="true" CodeBehind="VS2010Check.aspx.cs" Inherits="XhtmlAppCS.VS2010Check" %></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"><html xmlns="http://www.w3.org/1999/xhtml"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <head runat="server"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <title></title></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </head></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <body></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <form id="form1" runat="server"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <div></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <asp:Wizard ID="Wizard1" runat="server" </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> onfinishbuttonclick="Wizard1_FinishButtonClick"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <WizardSteps></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <asp:WizardStep ID="WizardStep1" runat="server" Title="Step 1"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <div></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <asp:CheckBox ID="CheckBoxA" runat="server"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </asp:CheckBox></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <asp:CheckBox ID="CheckBoxB" runat="server"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </asp:CheckBox></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </asp:WizardStep></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <asp:WizardStep ID="WizardStep2" runat="server" Title="Step 2"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <div></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <asp:Label ID="LabelResult" runat="server" Text="This is label 1"></asp:Label> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </asp:WizardStep></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </WizardSteps></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </asp:Wizard> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> <asp:Label ID="LabelFinish" runat="server" Text="This is the finish label"></asp:Label> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </form></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </body></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"></html></div>This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 23, 2010 05:49 AM|TATWORTH|LINK
The designer file generated is:
<div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">//------------------------------------------------------------------------------</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// <auto-generated></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// This code was generated by a tool.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">//</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// Changes to this file may cause incorrect behavior and will be lost if</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// the code is regenerated. </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">// </auto-generated></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">//------------------------------------------------------------------------------</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste">namespace XhtmlAppCS {</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> public partial class VS2010Check {</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// <summary></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// form1 control.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// </summary></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// <remarks></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// Auto-generated field.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// To modify move field declaration from designer file to code-behind file.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// </remarks></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> protected global::System.Web.UI.HtmlControls.HtmlForm form1;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// <summary></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// Wizard1 control.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// </summary></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// <remarks></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// Auto-generated field.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// To modify move field declaration from designer file to code-behind file.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// </remarks></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> protected global::System.Web.UI.WebControls.Wizard Wizard1;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> </div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// <summary></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// LabelFinish control.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// </summary></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// <remarks></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// Auto-generated field.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// To modify move field declaration from designer file to code-behind file.</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> /// </remarks></div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> protected global::System.Web.UI.WebControls.Label LabelFinish;</div> <div style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;" id="_mcePaste"> }</div>This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 23, 2010 05:57 AM|TATWORTH|LINK
Applying the workaound suggested earlier, I modified the code as follows:
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 23, 2010 06:00 AM|TATWORTH|LINK
Instead of posting from Chrome, I will now post from Firefox, with the changes in 18pt:
#region " Copyleft "
// <copyright file="VS2010Check.aspx.cs" company="Company">
// Copyright (c) 2010 All Right Reserved
// </copyright>
// <author>Clive Chinery</author>
// <email>findme@on.forums.asp.net</email>
// <date>2010-02-23</date>
// <summary>
// Copyright (C) 2010 Clive Chinery
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// </summary>
#endregion
namespace XhtmlAppCS
{
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class VS2010Check : System.Web.UI.Page
{
protected global::System.Web.UI.WebControls.CheckBox CheckBoxA;
protected global::System.Web.UI.WebControls.CheckBox CheckBoxB;
protected global::System.Web.UI.WebControls.Label LabelResult;
/// <summary>
/// Handles the Load event of the Page control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Handles the FinishButtonClick event of the Wizard1 control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.Web.UI.WebControls.WizardNavigationEventArgs"/> instance containing the event data.</param>
protected void Wizard1_FinishButtonClick(object sender, WizardNavigationEventArgs e)
{
this.LabelFinish.Text = "Result A:"
+ CheckBoxA.Checked.ToString()
+ " B:" + CheckBoxB.Checked.ToString();
}
}
}
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 23, 2010 11:12 AM|TATWORTH|LINK
I have done a demo of the problem and its manual fix at http://vs2010rc1fix.codeplex.com/
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Member
2 Points
10 Posts
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 25, 2010 09:09 AM|rcury|LINK
I appreciate your efforts and suggestions in an attempt to "circumvent" this bug, but I find it impossible to use them in the development of any application.
Using your suggestion for a resolution that would change all the page frames after this bug was fixed.
I suggest we all keep voting for this bug to try to expedite this solution.
The link is https://connect.microsoft.com/VisualStudio/feedback/details/533071/controls-in-createuserwizard-wizardstep-not-visible-as-before
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 25, 2010 10:01 AM|TATWORTH|LINK
I totally agree with you on this.
If all the added lines were put into a region, deleting them one the bug is fixed should be only the work of a few seconds.
What is there is another bug that is shielded by this one? Circumventing this one would allow further testing.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Member
2 Points
10 Posts
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 25, 2010 12:00 PM|rcury|LINK
In fact...
You are right!
Tks for your attention!
Rubens Cury
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Feb 25, 2010 12:43 PM|TATWORTH|LINK
Thank you!
I consider it essential that everyone finding this problem, endorses the MS Connect Report.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Member
2 Points
10 Posts
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Mar 08, 2010 12:13 PM|rcury|LINK
Hi All,
A patch for this issue for Visual Studio 2010 RC is now available for download:
http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=27117
tks,
Rubens Cury
All-Star
44551 Points
13496 Posts
MVP
Re: A Very Serious Bug - ASP.Net - Don´t Start Using
Mar 08, 2010 05:41 PM|TATWORTH|LINK
Thank you for pointing this fix out to us!
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239