I am working on building out my first site to Kentico.  Everything is going great so far.  I used the technique outlined on the following site to move the ViewState to the bottom of the page using an HttpModule.  
http://blog.madskristensen.dk/post/An-HttpModule-that-moves-ViewState-to-the-bottom.aspx
I had to edit the code slightly because I was getting an error on some of the CMS Desk pages.  I basically just made the following modifications.
Changed:
int formEndStart = html.IndexOf("</form>") - 1; 
To be: 
int formEndStart = html.IndexOf("</form>"); 
So far everything seems to be working fine, but I am wondering if anyone else has tried this technique with Kentico, and if anyone can foresee any problems it may create.