p2p.wrox.com Forums

Need to download code?

View our list of code downloads.


Go Back   p2p.wrox.com Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.1
I forgot my password Register Now
Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read
ASP.NET 1.1 As of 10/6/2005, this forum is locked as part of the reorganization described here: http://p2p.wrox.com/topic.asp?TOPIC_ID=35394. No posts have been deleted. Open ongoing discussions from the last week have been moved to either ASP.NET 1.0 and 1.1 Beginners http://p2p.wrox.com/asp-net-1-0-1-1-basics-60/ or ASP.NET 1.0 and 1.1 Professional. http://p2p.wrox.com/forum.asp?FORUM_ID=50. See my sticky post inside for more.

Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.1 section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.

 
 
Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old June 14th, 2004, 02:50 PM
Friend of Wrox
Points: 989, Level: 12
Points: 989, Level: 12 Points: 989, Level: 12 Points: 989, Level: 12
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Oct 2003
Location: Albany, NY, USA.
Posts: 218
Thanks: 0
Thanked 0 Times in 0 Posts
Default Position On PostBack revisited

I have found SmartNavigation="True" in the @Page directive to be ineffective (I'm using IE6). I found a great sounding product called SmartScroller http://www.strengthtechnologies.com/scroll/, but had trouble installing it.

Can anybody add to this?

Thanks

- - - - - - - - - - - - - - - - - - - - - - -
In God we trust, everything else we test.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
  #2 (permalink)  
Old June 14th, 2004, 03:01 PM
Friend of Wrox
Points: 2,801, Level: 22
Points: 2,801, Level: 22 Points: 2,801, Level: 22 Points: 2,801, Level: 22
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Nov 2003
Location: , , .
Posts: 1,285
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Well.... There is a difficult way to imitate SmartNavigation using JavaScript. Here goes....



<form onsubmit=smartNavInit(this.smartnav_x, this.smartnav_y) action=whatever method=get_or_post>
<input type=hidden id=smartnav_x value=''>
<input type=hidden id=smartnav_y value=''>

</form>
<script type=text/javascript>
function smartNavInit(sn_x, sn_y)
{
 sn_y.value = window.scrollTop;
 sn_x.value = window.scrollLeft;
 return true;
}
</script>


<script type=text/javascript>
onload=smartNavGo;
function smartNavGo()
{
 var smrtnv_x = <%=Request.Form("smartnav_x")%>;
 var smrtnv_y = <%=Request.Form("smartnav_y")%>;
 window.scrollTo(smrtnv_x, smrtnv_y);
}
</script>


Forgive me if it doesn't work- it is bound to have an error or two.

HTH,

Snib

<><
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
 


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
CalculatorWrapper Revisited RJMiller BOOK: Real World SharePoint 2007 (SharePoint MVP) ISBN 978-0-470-16835-6 3 September 4th, 2008 04:06 PM
Maintaining scroll position on postback majorpayne27 Struts 0 July 10th, 2007 10:07 AM
Best Picks Revisited - Example not working shalesh BOOK: Professional Ajax ISBN: 978-0-471-77778-6 6 November 3rd, 2006 10:40 AM
Insert Issue revisited cedwards Dreamweaver (all versions) 13 June 21st, 2005 04:02 PM
Position On PostBack Colonel Angus ASP.NET 1.1 4 June 7th, 2004 03:10 PM



All times are GMT -4. The time now is 03:16 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
© 2008 Wiley Publishing, Inc