vote up 1 vote down star

Hi all,

I am using one master page.In that I am registering java scripts and checking some session conditions for every page.

I Don't want this one to be called for each and every page.It takes some time to execute the code.

Is there a way to avoid this repetitive execution?

flag

27% accept rate
1  
Improve your accept rate to mark as answer of your questions – Muhammad Akhtar Nov 2 at 10:03
@Muhammad Akhtar - People shouldn't be forced into accepting answers, especially if they don't help (admittedly, some of Ramesh's questions could be polished up to enable better answers) - if you actually look at some of the older questions, Ramesh has been interacting with the answerers. – Zhaph - Ben Duguid Nov 2 at 14:55

1 Answer

vote up 1 vote down check

You'll probably have to keep checking the session conditions - as they are per-user, there's no way to guarantee that any one request is coming from the same user without checking sessions/cookies.

As to the script stuff - could you make those declarative (in the mark-up) rather than in the code-behind?

A possible alternative is to look into "donut caching" where you cache most of the page, but leave those areas of the page that change on a "per user" basis out of the cache.

Scott Guthrie has a good post on this:

Tip/Trick: Implement "Donut Caching" with the ASP.NET 2.0 Output Cache Substitution Feature

link|flag
Excellent Answer!! I shall try with that and get back you soon. – Ramesh Nov 2 at 10:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.