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 don't have to bind the event. Just create an event handler for it, and it will be bound automaticlaly:
protected void Page_Init(object sender, EventArgs e) { ... }