Re: display an alert only once
Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance
Tried it but it doesn't work.
I'd guess because if I move to another page and return, or if I refresh, it
is not a PostBack.
I think I heed a variable that has a lifetime that lasts until the user
leaves the site.
Thanks for trying to help.
"Munna" <munnaonc@xxxxxxxxx> wrote in message
news:ecdf6138-20f6-42ff-a46b-d4af9e33478d@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hi
try this
on Page_Load
if(Page.IsPostBack==false)
{
//put script here to show only once
}
hope that helps
regards
Munna
.
Relevant Pages
- Re: Text over a JPEG - Absolute positioning
... issue is the on resize the text box disappears until I force a refresh ... That is why I was asking if the is a way to capture a resize event, ... of the Lawyers' pages on third party browsers. ... Many Regards and Thank You, ... (microsoft.public.frontpage.programming) - Re: problem with GridView and PostBack
... It happens because when you refresh the page the broswer sends another ... And the click event occurs only during the PostBack event. ... data in that row is modified in the database. ... if ... (microsoft.public.dotnet.framework.aspnet) - Re: Text over a JPEG - Absolute positioning
... Murray, it is fine now, your parent/child solution worked and I positioned it ... issue is the on resize the text box disappears until I force a refresh. ... I always thought the windows was refreshed on a resize event, ... Many Regards and Thank You, ... (microsoft.public.frontpage.programming) - Re: difference between refreshing a page, postback and viewstate
... A "Refresh" simply calls the last request made for a page. ... A Postback is essentially an action on the page that sends ... page back to the server is a post. ... ViewState is essentially a client-side state information store, ... (microsoft.public.dotnet.framework.aspnet) - Re: difference between refreshing a page, postback and viewstate
... A "Refresh" simply calls the last request made for a page. ... A Postback is essentially an action on the page that sends ... page back to the server is a post. ... ViewState is essentially a client-side state information store, ... (microsoft.public.dotnet.framework.aspnet) |
|