Hi Bruce,
I see that in NT8, you revised the "getscreensize" JavaScript to be more efficient by only updating the session value on server when the screen size has changed. Unfortunately, I (and I suspect others) have a problem with the new script because I delete the session after the user logs out which includes the _screenWidth_ session value. Thus when the user logs in again the _screenWidth_ session value contains zero because the “getscreensize” function does not know that the server session value was erased. I use the _screenWidth_ session value to set the number of columns of my text box controls to fit my web pages.
For me, I solved the issue by clearing the JavaScript session storage on my log in web page which will trigger the "getscreensize" JavaScript to update the server session variable. I added packet.append('sessionStorage._ScreenWidth_=0;') in the "7 Inside Script" embed. I wanted to let you know, but I am not sure how you can fix this issue generically for everyone and I hope that you keep the efficiency in the script.
Thanks,
Rob Kolanko