Session State, was: trouble with undo

Jake,

I figured it out:
using sample BasicApp "Undo" works fine with: <sessionState mode="InProc"
using sample BasicApp with <sessionState mode="SQLServer"
the whole App does not work, no double click and no Undo, nothing
Unfortunately I have to use <sessionState mode="SQLServer" .
There is no way out.
What can I do?
For me
no onclick="goAction('undo','GoView1')" and
no onclick="goZoom('1.0','GoView1')" does work
I do zooming on an event:
Case ZoomIn
GoView1.DocScale = CType(Math.Round(GoView1.DocScale / 0.9F * 100), Single) / 100
and Undo/Redo I would like to do like:
Case Settings.Ribbonbutton.Commands.Redo
GoView1.Document.Redo()
Case Settings.Ribbonbutton.Commands.Undo
GoView1.Document.Undo()
I cannot resize any object
Thank you very much
Chris

I’ll look into this today.

Jake,

I switched my application to session state inProc and Undo works fine.
I'am sorry but I HAVE to use session state sqlserver