Sub page_load()

thedischordant

New Member
Where should I put sub page_load() - if I have several user controls on a page which are fired by page_load() do I have to call them from page_load() on the main .aspx page or can I do it somewhere else?<BR><BR>JackYou can use code behind and and place the control firing functions in their own class and then import the class into your main .aspx page.<BR><BR>Read the MS Quickstart tutorials on using Code behind and importing classes into pages.
 
Back
Top