I'm trying to create a web form using Visual Basic Net 2003 which I plan on adding a message box alerting user if they are missing data input.
If I'm not mistaken normally for the newer Visual Basic Net 2010 the code to create message box would be
messagebox.show("Insert msg here.")
There is no need to declare anything, yes? At least that is the case for VBA.
Because that is what I'm getting when I'm using 2003. It says that
messagebox is not declared
even though it is not supposed to be a variable. What is supposed to be the correct method to create message box in VB Net 2003?