W
Wysiwyg
Has anyone found a reasonable way to emulate smartnavigation functionality
for any browser? I'd really like to avoid creating history entries when
posting back to the same page.
SmartNavigation takes care of the annoying problem caused by creating a new
history entry when a page posts to itself. Only Internet Explorer will
support this functionality. When SmartNavigation is enabled the client
executes javascript code from the SmartNav.js script file which, not
suprisingly, doesn't contain code for non-IE client browsers. I doubt
non-Microsoft browser vendors will adopt Microsoft's JavaScript standards.
With JSP I used to do things like post to an update page, execute a
"window.history.go(-1);" after the load completes and then force a reload of
the original page. I doubt forcing a javascript "window.history.go(-1)"
conditionally during the postback would work all that great with dot net.
Thanks!
Bill
for any browser? I'd really like to avoid creating history entries when
posting back to the same page.
SmartNavigation takes care of the annoying problem caused by creating a new
history entry when a page posts to itself. Only Internet Explorer will
support this functionality. When SmartNavigation is enabled the client
executes javascript code from the SmartNav.js script file which, not
suprisingly, doesn't contain code for non-IE client browsers. I doubt
non-Microsoft browser vendors will adopt Microsoft's JavaScript standards.
With JSP I used to do things like post to an update page, execute a
"window.history.go(-1);" after the load completes and then force a reload of
the original page. I doubt forcing a javascript "window.history.go(-1)"
conditionally during the postback would work all that great with dot net.
Thanks!
Bill