I am using ASP.NET 3.5 and i used earlier 1.1 i am having difficulty to find where can i attach/declare the page init event ?
In 1.1 there was auto generated code which
you can add the page_init method in page's CS file. For example, if you have Default.aspx you can put the method in Default.aspx.cs
When you create a page in VS you will have the Page_Load method created for you. You can put your page_init code & other code for the page int the CS file.
PS: If you use VB as the server side code, you will have to put it in the VB file