Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_professional thread: ASP NET on Beta2, CR1 and final release


Message #1 by "Alessandro Facchini" <tid3840@i...> on Tue, 18 Dec 2001 21:15:45 +0100
Hi,

There are some few changes between beta 2 and RC.

In the Web Forms code behind file you will now find:

override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
	InitializeComponent();
	base.OnInit(e);
}

Before in Beta2 you have:

public myPage()
{
	Page.Init += new System.EventHandler(Page_Init);
}

private void Page_Init(object sender, EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
	InitializeComponent();
}

The both code will work in the RC version. So you don't need to change it.



The following lines have been removed from the Web.config file to the 
machine.config file.

<httpHandlers>
            <add verb="*" path="*.vb" 
type="System.Web.HttpNotFoundHandler,System.Web" />
            <add verb="*" path="*.cs" 
type="System.Web.HttpNotFoundHandler,System.Web" />
            <add verb="*" path="*.vbproj" 
type="System.Web.HttpNotFoundHandler,System.Web" />
            <add verb="*" path="*.csproj" 
type="System.Web.HttpNotFoundHandler,System.Web" />
            <add verb="*" path="*.webinfo" 
type="System.Web.HttpNotFoundHandler,System.Web" />
</httpHandlers>

/Fredrik Normén


>From: "A.P.System s.r.l." <fpagano@a...>
>Reply-To: "ASPX_Professional" <aspx_professional@p...>
>To: "ASPX_Professional" <aspx_professional@p...>
>Subject: [aspx_professional] Re: ASP NET on Beta2, CR1 and final release
>Date: Wed, 19 Dec 2001 10:50:42 +0100
>
>I'm Italian too.
>
>Rc1 is "Professional Edition", Beta2 is Enterprise, so Rc1 has less
>functionalities than Beta2 as MS stated in Rc1 dwonload page.
>
>I don't think there will be many differences between Beta2 and Final.
>
>Beta2 is really stable.
>
>Probably Final will have a better help!
>
>Regards.
>
>Fabio Pagano
>fpagano@a...
>
>----- Original Message -----
>From: "Alessandro Facchini" <tid3840@i...>
>To: "ASPX_Professional" <aspx_professional@p...>
>Sent: Tuesday, December 18, 2001 9:15 PM
>Subject: [aspx_professional] ASP NET on Beta2, CR1 and final release
>
>
> > Hi,
> >
> > I'm Italian and so I excuse me for my bad English.
> >
> > I'm studying now ASP NET on Beta 2 with good results.
> >
> > I think I can work with the final release of Visual Studio Net (next
> > February?) only in the middle of the next year.
> >
> > So I will continue working with Beta 2 for the next months.
> >
> > But I think: will the final release different from beta2?
> >
> > And
> >
> > What about differences from Beta2 and CR1?
> >
> > Thanks in advance.
> >
> > Alessandro Facchini
> >
> >
>$subst('Email.Unsub').
>
>
>$subst('Email.Unsub').




_________________________________________________________________
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


  Return to Index