Hi,

In asp page I stored the textbox values in one javascript variable:
var strline1side1 = document.frmart work.side1textb ox1.value;
Then I save the same variable in one javascript cookie variable:

document.cookie ="lineside1="+s trline1side1+"; path=/;";

Now after this I read this cookie in asp variable
strtextbox1 = request.Cookies ("lineside1" )
...