One way that you could solve your problem is to use the AJAX
Extensions. After you install the AJAX Extensions, if you put content
inside of an UpdatePanel control, and the user clicks something inside
it, a PostBack will still occur, but only the portion of the screen
contained in the UpdatePanel will be refreshed after the PostBack. So
if you click the Back button, it will act as if the PostBack never
happened. Here's some code for you:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Label ID="lblTime" runat="server"></asp:Label>
<asp:Button ID="btnRefreshUpdatePanel" runat="server"
Text="Do PostBack" />
</ContentTemplate>
</asp:UpdatePanel>
If you have a page foo.html that links to a page foo.aspx which
contains the above UpdatePanel, the user can click the "Do PostBack"
button as many times as they want, and you can still press the
browser's Back button to get back to foo.html.
Hope this helps
Andy
On Dec 14, 8:21 am, cashdeskmac
<cashdesk...@discussions.microsoft.com> wrote:
> Hi,
>
[quoted text clipped - 6 lines]
>
> Any help is appreciated as always.
cashdeskmac - 14 Dec 2007 18:44 GMT
Fantastic. Thank you very much. :-)
> One way that you could solve your problem is to use the AJAX
> Extensions. After you install the AJAX Extensions, if you put content
[quoted text clipped - 32 lines]
> >
> > Any help is appreciated as always.