Below you will find pages that utilize the taxonomy term “ViewState”
Posts
ViewState
Om du vill behålla dina värden på variabler mellan postbacks, använd ViewState:
if (ViewState\["MaxNumberOfArticles"\] != null) { MaxNumberOfArticles = (int) ViewState\["MaxNumberOfArticles"\]; } MaxNumberOfArticles += 10; ViewState.Add("MaxNumberOfArticles", MaxNumberOfArticles); RenderNews();