SmartNavigation problem

sj1187534

Centurion
Joined
Jun 10, 2003
Messages
108
Location
Dallas, Houston, etc.etc.
Hi....Can anyone tell me if there are any issues with the SmartNavigation attribute of a page. I include the "SmartNavigation=true" tag in the page directive but for some reason, when i am click on some link in that page, the page is going blank and it is not taking me to the requesting page. So, I tried to view the Source of the blank page and it looked like this.

<BODY><ASP_SMARTNAV_RDIR url="/sample.aspx?aq=dallas&c=spb&z=%&l=%"></ASP_SMARTNAV_RDIR></BODY>

Actually the sample.aspx is the page I requested but it still remains the original page with the above code in the source.

Note: This is the only code that it is showing the blank page.

Thanks
SJ
 
Are you using Response.Redirect() or Server.Transfer(), I would use the latter if you're staying within the same server.
 
Are you transfering back to the same page? If so then don't, if not then SmartNav shouldn't be affecting you in this case.
 
Back
Top