Is there any equivalent ASP.NET ViewState in other web technologies?

I want to know if there are other web development technologies that have something like ViewStateofASP.NET

+3
source share
1 answer

I don’t know if there is a direct consequence in other environments / frameworks, but the concept itself is quite simple to implement in any environment network. This is nothing more than data that has been encoded base64 and placed in the form field hidden.

+3
source

Source: https://habr.com/ru/post/1782166/


All Articles