473,396 Members | 1,990 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Smart Navigation property causing infinite Page Reload (v 1.1)!?!

Okay - this is stumping me. I've used .Net since 1.0 release and never had
this trouble before...

In one of my new projects, if I enable the SmartNavigation="True" in the
Page declaration/directive tag - when I go to test the page it goes into an
infinite loop (in debugger I've tried to break at the Page_Load method but
the loop occurs before the method can even be reached)!

I've rebooted the server...

I've recreated the application space in IIS 5.x...

I've tested with and without the SmartNavigation property. With it set to
false (or non existant) everything loads normally and the app works great.
Turn it on and away we go to Loop-ville!

Can someone help me figure this problem out? It's making me crazy.
~A~
Jan 23 '06 #1
7 1967
Smart Navigation works client side. When you say Page_Load, I assume you are
talking about Server side. Have you tried to debug the client side code. Do
you have any script that runs on the Window_OnLoad event, if so what is it.

Have you tried to update the client side scripts by re-registering the code
using aspnet_regiis.exe

Regards,

Trevor Benedict R
MCSD
"Kewlpack" <Ke******@discussions.microsoft.com> wrote in message
news:20**********************************@microsof t.com...
Okay - this is stumping me. I've used .Net since 1.0 release and never had
this trouble before...

In one of my new projects, if I enable the SmartNavigation="True" in the
Page declaration/directive tag - when I go to test the page it goes into
an
infinite loop (in debugger I've tried to break at the Page_Load method but
the loop occurs before the method can even be reached)!

I've rebooted the server...

I've recreated the application space in IIS 5.x...

I've tested with and without the SmartNavigation property. With it set to
false (or non existant) everything loads normally and the app works great.
Turn it on and away we go to Loop-ville!

Can someone help me figure this problem out? It's making me crazy.
~A~

Jan 23 '06 #2
I don't have any specific client side code in this project. No validators,
nadda... It's actually a pretty vanilla page which is why I'm surprised and
stumped.

My test server is also my development PC and every other project appears to
be functioning normally. I'll reinstall the client side scripts... perhaps
that will fix whatever is going on.

Any other thoughts??
~A~

"Trevor Benedict R" wrote:
Smart Navigation works client side. When you say Page_Load, I assume you are
talking about Server side. Have you tried to debug the client side code. Do
you have any script that runs on the Window_OnLoad event, if so what is it.

Have you tried to update the client side scripts by re-registering the code
using aspnet_regiis.exe

Regards,

Trevor Benedict R
MCSD
"Kewlpack" <Ke******@discussions.microsoft.com> wrote in message
news:20**********************************@microsof t.com...
Okay - this is stumping me. I've used .Net since 1.0 release and never had
this trouble before...

In one of my new projects, if I enable the SmartNavigation="True" in the
Page declaration/directive tag - when I go to test the page it goes into
an
infinite loop (in debugger I've tried to break at the Page_Load method but
the loop occurs before the method can even be reached)!

I've rebooted the server...

I've recreated the application space in IIS 5.x...

I've tested with and without the SmartNavigation property. With it set to
false (or non existant) everything loads normally and the app works great.
Turn it on and away we go to Loop-ville!

Can someone help me figure this problem out? It's making me crazy.
~A~


Jan 23 '06 #3
I suspect the client side code generate by the SmartNavigation script. Have
you checked you machine to see for any adware/spware, those might also crash
IE. In this case I am not sure why it does not happen when SMARTNAVIGATION
is diasabled.

I would also check the IIS Log files to see if the URI is repeatedly called.
In which case I would suspect a postback, else it could be entirely client
side related. Remember that the IIS log files may not show the entries
immediately.

I would also use IISStatus from
http://www.alchemy.co.nz/products/products_6_1.html to see what' request are
being processed on the web server. You have to copy this file to the root
folder fo the default website and load this as a ISAPI Filter into the
Default Web Site (hope this is where you are creating your web
applications). It works without restarting the webserver. Change the Execute
Permission to scripts and Executables for your defaultl Home. You can remove
the ISAPI filter and reset the settings after the test. Then browse to
http://localhost/iisstatus.dll to see a list of executing pages.

You can also download the FileMon and RegMon from
http://www.sysinternals.com and see what is happening on the clint side and
then let us know. also find out if you ahve anything in the Windows Event
Log.

Regards,

Trevor Benedict R
MCSD
"Kewlpack" <Ke******@discussions.microsoft.com> wrote in message
news:3A**********************************@microsof t.com...
I don't have any specific client side code in this project. No validators,
nadda... It's actually a pretty vanilla page which is why I'm surprised
and
stumped.

My test server is also my development PC and every other project appears
to
be functioning normally. I'll reinstall the client side scripts... perhaps
that will fix whatever is going on.

Any other thoughts??
~A~

"Trevor Benedict R" wrote:
Smart Navigation works client side. When you say Page_Load, I assume you
are
talking about Server side. Have you tried to debug the client side code.
Do
you have any script that runs on the Window_OnLoad event, if so what is
it.

Have you tried to update the client side scripts by re-registering the
code
using aspnet_regiis.exe

Regards,

Trevor Benedict R
MCSD
"Kewlpack" <Ke******@discussions.microsoft.com> wrote in message
news:20**********************************@microsof t.com...
> Okay - this is stumping me. I've used .Net since 1.0 release and never
> had
> this trouble before...
>
> In one of my new projects, if I enable the SmartNavigation="True" in
> the
> Page declaration/directive tag - when I go to test the page it goes
> into
> an
> infinite loop (in debugger I've tried to break at the Page_Load method
> but
> the loop occurs before the method can even be reached)!
>
> I've rebooted the server...
>
> I've recreated the application space in IIS 5.x...
>
> I've tested with and without the SmartNavigation property. With it set
> to
> false (or non existant) everything loads normally and the app works
> great.
> Turn it on and away we go to Loop-ville!
>
> Can someone help me figure this problem out? It's making me crazy.
> ~A~


Jan 24 '06 #4
Do you by any chance have Zone Alarm installed on your PC. If so disable it
and try again and let us know.

Regards,

Trevor Benedict R
MCSD
"Trevor Benedict R" <tr********@yahoo.com> wrote in message
news:eB**************@tk2msftngp13.phx.gbl...
I suspect the client side code generate by the SmartNavigation script. Have
you checked you machine to see for any adware/spware, those might also
crash IE. In this case I am not sure why it does not happen when
SMARTNAVIGATION is diasabled.

I would also check the IIS Log files to see if the URI is repeatedly
called. In which case I would suspect a postback, else it could be
entirely client side related. Remember that the IIS log files may not show
the entries immediately.

I would also use IISStatus from
http://www.alchemy.co.nz/products/products_6_1.html to see what' request
are being processed on the web server. You have to copy this file to the
root folder fo the default website and load this as a ISAPI Filter into
the Default Web Site (hope this is where you are creating your web
applications). It works without restarting the webserver. Change the
Execute Permission to scripts and Executables for your defaultl Home. You
can remove the ISAPI filter and reset the settings after the test. Then
browse to http://localhost/iisstatus.dll to see a list of executing pages.

You can also download the FileMon and RegMon from
http://www.sysinternals.com and see what is happening on the clint side
and then let us know. also find out if you ahve anything in the Windows
Event Log.

Regards,

Trevor Benedict R
MCSD
"Kewlpack" <Ke******@discussions.microsoft.com> wrote in message
news:3A**********************************@microsof t.com...
I don't have any specific client side code in this project. No validators,
nadda... It's actually a pretty vanilla page which is why I'm surprised
and
stumped.

My test server is also my development PC and every other project appears
to
be functioning normally. I'll reinstall the client side scripts...
perhaps
that will fix whatever is going on.

Any other thoughts??
~A~

"Trevor Benedict R" wrote:
Smart Navigation works client side. When you say Page_Load, I assume you
are
talking about Server side. Have you tried to debug the client side code.
Do
you have any script that runs on the Window_OnLoad event, if so what is
it.

Have you tried to update the client side scripts by re-registering the
code
using aspnet_regiis.exe

Regards,

Trevor Benedict R
MCSD
"Kewlpack" <Ke******@discussions.microsoft.com> wrote in message
news:20**********************************@microsof t.com...
> Okay - this is stumping me. I've used .Net since 1.0 release and never
> had
> this trouble before...
>
> In one of my new projects, if I enable the SmartNavigation="True" in
> the
> Page declaration/directive tag - when I go to test the page it goes
> into
> an
> infinite loop (in debugger I've tried to break at the Page_Load method
> but
> the loop occurs before the method can even be reached)!
>
> I've rebooted the server...
>
> I've recreated the application space in IIS 5.x...
>
> I've tested with and without the SmartNavigation property. With it set
> to
> false (or non existant) everything loads normally and the app works
> great.
> Turn it on and away we go to Loop-ville!
>
> Can someone help me figure this problem out? It's making me crazy.
> ~A~


Jan 24 '06 #5
K - I've reinstalled the Client Side Scripts... I run two forms of
Antispyware as well as an Enterprise antivirus client (our entire campus uses
it) on the machine at all times and nothing is showing up as far as that
stuff goes.

Still gettin' the infinite loop on the page - EVEN WITH NOTHING in the
Page_Load method.

I'm considering uninstalling .NET 1.1 and reinstalling it... but the
behavior does NOT happen with the 30 other web apps on this box... :(

Trevor - thanks for the replies thus far - hopefully we can figure it out.
~A~

"Trevor Benedict R" wrote:
I suspect the client side code generate by the SmartNavigation script. Have
you checked you machine to see for any adware/spware, those might also crash
IE. In this case I am not sure why it does not happen when SMARTNAVIGATION
is diasabled.

Jan 24 '06 #6
Nope.

"Trevor Benedict R" wrote:
Do you by any chance have Zone Alarm installed on your PC. If so disable it
and try again and let us know.

Jan 24 '06 #7
Following up...

This will bake your noodle.

I rebooted the machine; uninstalled .NET 1.1; stopped/started IIS;
reinstalled .NET 1.1 (/i); created a simple TEST.aspx with NO code whatsoever
in it; set it to be the Start Page... and...

With "smartNavigation=True" the infinite loop behavior shows up!! With it
set to False, things work normally again. NO CODE and this is still happening.

I'm at a total loss...
Jan 24 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Jason Rodman | last post by:
I have been working on a web app that uses IFrames for our edit screens. A main window contains static information, while an IFrame contains the editable page. I use javascript from the outer page...
1
by: Matthew Louden | last post by:
I want to clarify the new feature smart navigation property in ASP.NET. Let's use the example and assume this is in process.asp > > Here's a typical html form: > > <form action="process.asp"...
10
by: RodBillett | last post by:
Using SmartNavigation. Windows2003 Server Framework 1.0 (3705) IIS6 and I have IIS configured to utilize the 1.0 framework. Any Ideas why I would be getting the following jscript error within...
1
by: Sachin Kuchinad | last post by:
Hi, I am using Smart Navigation to avoid screen flashes during refresh / reload of web pages which are under frames. Following is the physical layout of pages and their attributes. Main.aspx...
1
by: David | last post by:
The page whose smart navigation property is set to true shows a javacript error when a button that posts back to the same page is pressed. Line:27 Char: 9 Error: Object doesn't support this...
1
by: thomson | last post by:
Hi all, i have enabled Smart Navigation in the Page attribute, My Webform has several Webform controls, all applied with style sheets from an external file. Problem --------- When a postback...
4
by: aschmidt | last post by:
Another bug in smart navigation. If smartnavigation is enabled in the page and session timeout occurs, the framework redirects you to wrong location of login.aspx page if you use Forms...
3
by: ajfish | last post by:
Hi, I have a web form with smart navigation turned on. the html has an onload event which calls a javascript function and the contents of this function are dynamically generated on the server...
0
by: keeper | last post by:
Recently a new windows update for internet explorer was released which seems to have broken stylesheets with smart navigation. The first request for the page works fine, but any subsequent...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.