Click here to Skip to main content
15,915,324 members

Comments by Nick Fisher (Consultant) (Top 31 by date)

Nick Fisher (Consultant) 29-Jan-14 4:09am View    
It depends on how you're creating the child window. You would normally need to either post back to the server OR to use Javascript to open the window. But seeing as you don't want to do either of these things, it's difficult to give any suggestion unless you post your code so we can understand what you're trying to achieve.
Nick Fisher (Consultant) 28-Jan-14 10:22am View    
Yes, it sounds likely to be a flle permission problem. Put a try/catch statement around your code to see what exception it throws. Also, make sure the disk is not full on the IIS server!
Nick Fisher (Consultant) 27-Dec-13 4:32am View    
The whole point of the name attribute is that it's supposed to be unique, so you have a way of differentiating between each of your input elements. If your input elements don't have a unique name, how are you supposed to reference each one directly?
Nick Fisher (Consultant) 16-Dec-13 11:34am View    
Then I'd check the value you have for 'intrvl' is being stored properly. Put an alert showing the value in your setInterval function, and then put another alert just before you perform the clearInterval to make sure the values both match each other. If they're not, then you know that's where the problem is.
Nick Fisher (Consultant) 16-Dec-13 9:40am View    
OK, well then you really need to check the values that are getting passed through to your function are the values that you're expecting. Put an alert at the start of getData_callback that shows the value being passed through, and this should at least highlight where the error's coming from.