,the not ispostback entry does not run the javascript. I want to run the java script. Each time I press the button that runs this javascript command, my page_load event fires for the screen that contains this java script/button. Its the execution of the page_load event that I don't want. Maybe I misunderstood your comment .
Main Topics
Browse All Topics





by: AfricansPosted on 2009-08-23 at 14:26:33ID: 25164336
Hi,
You called java script inside your code and that is why it fires, anyhow you should use the common check
If Not IsPostBack() Then
'Write your code here
End If
Otherwise you have to find out how to show your popup using java script inside your html code
Good Luck