Page
Silverlight – Dynamic Page load
Silverlight – Dynamic Page load
2009.05.10Silverlight에서 네비게이션(메뉴에 따른 페이지 호출?)을 작성하기 위해 넘겨온 값에 따라 시작되는 비주얼을 지정하면 된다. 그를 위해 다음과 같은 코드가 필요하다. Private void Application_Startup(object sender, StartupEventArgs e) { String machineid = e.InitParams["machineid"]; this.RootVisual = new Page(machineid); }
ASP.NET 페이지 실행 주기
ASP.NET 페이지 실행 주기
2007.08.09기본적으로 웹 폼 이벤트 실행 순서는 Init > LoadViewState > Load > 서버콘트롤 이벤트 > PreRender > SaveViewState > Unload 순서로 실행된다. http://msdn2.microsoft.com/en-us/library/ms178473.aspx General Page Life-cycle Stages In general terms, the page goes through the stages outlined in the following table. In addition to the page life-cycle stages, there are application stages that occur before and after a request but are no..