IStateManager.LoadViewState メソッド
アセンブリ: System.Web (system.web.dll 内)


' Implement the LoadViewState method. If the saved view state ' exists, the view-state value is loaded to the MyItem ' control. Sub LoadViewState(ByVal savedState As Object) Implements IStateManager.LoadViewState _message = CStr(_viewstate("message")) If Not (savedState Is Nothing) Then CType(_viewstate, IStateManager).LoadViewState(savedState) End If End Sub 'LoadViewState
// Implement the LoadViewState method. If the saved view state // exists, the view-state value is loaded to the MyItem control. void IStateManager.LoadViewState(object savedState) { _message = (string)_viewstate["message"]; if (savedState != null) ((IStateManager)_viewstate).LoadViewState(savedState); }
// Implement the LoadViewState method. If the saved view state // exists, the view-state value is loaded to the MyItem control. public void LoadViewState(Object savedState) { _message = (String)(_viewState.get_Item("message")); if (savedState != null) { ((IStateManager)_viewState).LoadViewState(savedState); } } //LoadViewState

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からIStateManager.LoadViewState メソッドを検索する場合は、下記のリンクをクリックしてください。

- IStateManager.LoadViewState メソッドのページへのリンク