FP XP : Full publish turns on application setting in IIS 5

  • Thread starter Thread starter Evan Fleming
  • Start date Start date
E

Evan Fleming

Whenever I do a full publish on a sub-website, it enables the application
setting in IIS, breaking some sessions variables I need to carry over from
the main website.

Is there a way to prevent Frontpage from turning on the application setting
in IIS 5.0 when doing a full publish?

It doesn't seem to do this when publishing a file or two, only when I do a
full publish.

Thanks,
Evan
 
No, but you can pass the variable as a querystring from the root web and then re-establish them as
sessions in the subweb.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
In most cases, it's replacing the global.asa file that
resets the application, and therefore discards all session
variables.

To workaround, as you've discovered when you publish only
certain page, it *not* to publish the global.asa file. For
example, open your local copy of the site, right-click
global.asa, and choose Don't Publish.

If course, if you've changed global.asa, then you need to
publish it. But this usually indicates that something
about your session and application variables has changed,
and that's why IIS discards them and starts over.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
Also re-publishing the database may also cause the problem as well.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Back
Top