What is smart navigation

  • Thread starter Thread starter Samuel Shulman
  • Start date Start date
S

Samuel Shulman

I thought that the term, was referring to the browser remembering for
example the scroll bar position

However my page's SmartNavigation property is set False but the feature seem
to work

Thank you for your advice,

Samuel
 
the "remember the scrool bar position" is set under the Page declerative,
like:

<%@ Page MaintainScrollPositionOnPostback="true" ....
 
I actually noticed that it will keep the scroll position between posbacks
only if the property be set to True
But I thought that it is necessary to remember the page number where the
Datagrid has more than one page and in fact it seems to remember without

Samuel
 
The Page.SmartNavigation property is deprecated in ASP.NET 2.0.

http://msdn2.microsoft.com/en-us/system.web.ui.page.smartnavigation.aspx

Also, see :
http://msdn.microsoft.com/netframework/programming/obsoleteapi/ObsByAssembly.aspx#System.Web

The recommended alternatives are Page.SetFocus and Page.MaintainScrollPositionOnPostBack.

There's a new property which replaces it : pagesSection.SmartNavigation
http://msdn2.microsoft.com/en-us/library/system.web.configuration.pagessection.smartnavigation.aspx

http://msdn2.microsoft.com/en-us/library/system.web.configuration.pagessection.aspx




Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top