M
M. Ali Qureshi
Hi,
My page has following structure:
- Page
....|-MultiView
.......|--View1 (Contains a wizard)
.......|--View2 (Contains another wizard)
I have following event handlers in my code file
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load '(This handles ofcourse page load)
Protected Sub HitRaterWiz_Init(ByVal sender As Object, ByVal e As
System.EventArgs) Handles HitRaterWiz.Init '(This handles init of one wizard
and adds steps dynamically)
Protected Sub WeightWiz_Init(ByVal sender As Object, ByVal e As
System.EventArgs) Handles WeightWiz.Init '(This handles init of sencong
wizard and adds steps dynamically)
Could someone tell me in which orders the above 3 events will be fired? I
assumed that page_load will be fired fist, but apparently its not the case.
Is it correct? or what i'm doing wrong? How can i get page_load to fire
first of all?
Any help will be appreciated.
Regards
My page has following structure:
- Page
....|-MultiView
.......|--View1 (Contains a wizard)
.......|--View2 (Contains another wizard)
I have following event handlers in my code file
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load '(This handles ofcourse page load)
Protected Sub HitRaterWiz_Init(ByVal sender As Object, ByVal e As
System.EventArgs) Handles HitRaterWiz.Init '(This handles init of one wizard
and adds steps dynamically)
Protected Sub WeightWiz_Init(ByVal sender As Object, ByVal e As
System.EventArgs) Handles WeightWiz.Init '(This handles init of sencong
wizard and adds steps dynamically)
Could someone tell me in which orders the above 3 events will be fired? I
assumed that page_load will be fired fist, but apparently its not the case.
Is it correct? or what i'm doing wrong? How can i get page_load to fire
first of all?
Any help will be appreciated.
Regards