Tuesday, January 31, 2006

MaintainScrollPositionOnPostback--ASP.NET 2.0

In ASP.NET version 1.X, page class has SmartNavigation property,
In ASP.NET version 2.0, use SetFocus method or  MaintainScrollPositionOnPostback

 

 

get xdata from Autocad command line(LISP code)

(entget (car (entsel)) (list "*"))

jscript-window.history

Use Client Jscript fucction to go forward/backword

window.history.go(1)
window.history.back() = window.history.go(-1)
window.history.forward(1)


Rrefresh window which open the current top window
window.opener.document.form1.submit()

Or

window.opener.history.go(0)

But this will bring up a "Refresh" alert window before refresh.

Blog Archive