You will get a compilation error if you will place C# and VB code along in App_Code directory. This little code snippet for web.config gives your compliper an ability to distinguish between languages. Some of you could ask, i use X language why should i start an application with native support for few ? Real life example explains why would you do that.
Posts Tagged: web.config
9
Sep 09
HOWTO: Limit Viewstate length
In some occasions browsers may block or truncate generated viewstate due to it’s length. This short tweak may solve the issue by dividing the viewstate to independent hidden fields based on the number you provide as value. In this example maxPageStateFieldLength set to 50 this means when viewstate get beyond 50 characters it will be broken to different hidden fields holding viewstate’s value