M
Mark
Hi everyone, I am having a tinker around with Visual Studio Professional
2005 and I am building a simple website:
Now, in 1.1 the event handlers were declared in the code behind page and you
could add in your own custom event handlers there
e.g.
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
InitializeComponent();
MyObject.EventClicked+=new Object.Clicked(FunctionNameToBeCalled);
base.OnInit(e);
}
#endregion
I notice that this is missing from VS2005 and is stored in a seperate file,
can someone please tell me where this file is stored and *If* I make changes
to it will the compiler overwrite my changes when I rebuild th solution.
Also, if there is a nice VS2005 FAQ for VS2003 developers in regards to the
IDE etc, please post the URL
TIA
Mark
2005 and I am building a simple website:
Now, in 1.1 the event handlers were declared in the code behind page and you
could add in your own custom event handlers there
e.g.
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
InitializeComponent();
MyObject.EventClicked+=new Object.Clicked(FunctionNameToBeCalled);
base.OnInit(e);
}
#endregion
I notice that this is missing from VS2005 and is stored in a seperate file,
can someone please tell me where this file is stored and *If* I make changes
to it will the compiler overwrite my changes when I rebuild th solution.
Also, if there is a nice VS2005 FAQ for VS2003 developers in regards to the
IDE etc, please post the URL
TIA
Mark