When you consider the radical differences between a stand-alone application and a web based client server application, the fact that you can cut and paste this code with no syntax differences - those "wavy green underscores" - is a refreshing testament to how much Microsoft has been able to program around those differences with ASP.NET. But that doesn't mean that everything is going to run now. There ARE some differences that we'll have to fix in code.
Before we do a trial run and see what they are, there's one final task.
Recall that we're developing a Web User Control. Our web calculator doesn't stand on it's own. It has to be part of another web page. So drag and drop your calculator component from Solution Explorer onto the main web form - it has the ".aspx" file identifier. Visual Studio doesn't have a "WYSIWYG" display here yet so the calculator just appears as a plain box in the main form until you actually run it.
Now, click the "run" icon, press F5, or select Start from the Debug menu and, Ta Da!, your form should appear in all it's glory running in a browser on your "localhost" server (or even your web hosting service if that's the way you're working). And we still haven't changed a line of code in our VB.NET version.


