Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
rtutus
Aged Yak Warrior
522 Posts |
Posted - 2007-03-15 : 10:30:46
|
Here is my page directive, but the scroll is not kept in its place afte a post back any idea, pls:<%@ Page language="c#" Codebehind="sap.aspx.cs" AutoEventWireup="false" Inherits="WebForm1" smartNavigation="true"%>Thanks |
|
jsmith8858
Dr. Cross Join
7423 Posts |
Posted - 2007-03-15 : 10:49:56
|
Are you using ASP.NET 1.1 or 2.0 ?In 2.0, this property has been depreciated and the new one is called "MaintainScrollPositionOnPostBack"in 1.1, I believe that case is important in page directives, so be sure to capitalize the "S" in SmartNavigation.Finally, remember that not all browsers support this feature. It might be an IE-only thing, though I believe this has changed in .NET 2.0 and firefox and others are supported.- Jeffhttp://weblogs.sqlteam.com/JeffS |
|
|
rtutus
Aged Yak Warrior
522 Posts |
Posted - 2007-03-15 : 11:25:10
|
i use asp 1.1 and even with S capital, still same problem: Here is my tag:<%@ Page language="c#" Codebehind="sap.aspx.cs" AutoEventWireup="false" Inherits="WebForm1" SmartNavigation="true"%>I have explorer 6.0wired is not itThanks |
|
|
|
|
|