PDA

View Full Version : vB equivalent of javascript alert()?


makaiguy
03-29-2006, 06:24 PM
For debugging purposes of new code, I'd like to pop up the equivalent of a javascript alert() box with appropriate wording at various spots in the code to be able to check progress and display variable values as the code is executed. Does vB have an equivalent function?

Code Monkey
03-30-2006, 04:27 AM
echo ?

makaiguy
04-08-2006, 08:06 PM
I finally just ended up writing my routine as a separate php page, peppered with all the print() statements I could desire. When I got it all working, I extracted the code sans print() calls and used it as a plug-in.