| |
|
What is smart navigation?
Before explaining what smart navigation is, let me point out that Smart Navigation is obsolete in .NET 2.0. It
works with 1.1 & versions before it. The SetFocus and MaintainScrollPositionOnPostBack are used instead
Smart Navigation basically enhances a web pages' performance by doing the following:
* It eliminates the flash caused during navigation
* It persists element focus during postbacks
* It persists scroll position during postbacks between pages
* It retains the lasts page information in the history of the browser
I suggest not to use SmartNavigation because it does not work with many browsers.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| |