Hi folks
Have a header widget, in the header section of a master page viz:
<body>
<form id="Form" runat="server">
<div class="band header">
<!-- start header -->
<header class="container main">
<div class="eight columns">
<h1 class="logo">
...
</div>
<div class="eight columns">
<uc:HeaderWidget ID="headerWidget" runat="server" />
</div>
</header>
Now the header widget is displaying a couple of session variables that are simple counts.
The problem I am having is that they do not refresh the values displayed on the screen until after the page displayed in the main content is changed - even though the code behind executes and I can step thr ...
Go to the complete details ...