Chapter 3. Creating Your First Web Application

function OpenWin(url, w, h) { if(!w) w = 400; if(!h) h = 300; window.open(url, "_new", "width=" + w + ",height=" + h + ",menubar=no,toobar=no,scrollbars=yes", true); } function Print() { window.focus(); if(window.print) { window.print(); window.setTimeout('window.close();',5000); } }
Team-Fly    

Special Edition Using Microsoft® Visual Basic® .NET
By Brian Siler, Jeff Spotts
Table of Contents
Part I:  Getting Started with Visual Basic .NET


In this chapter

Getting Started with Web Applications

Creating the Sample Web Application

Enhancing Your Web Application

Troubleshooting Web Applications

It is rare these days to find someone interested in computers who is not also familiar with using the World Wide Web. The World Wide Web, the most popular application on the global Internet, has leaped into the public consciousness so thoroughly that "dot-com" ads for Web sites now appear in virtually all forms of visual media. As a result, the ability to develop Web sites is a valuable skill for any computer programmer to learn. In this chapter, we will get you started with Web development by creating a simple Web Application project in Visual Studio .NET. A Web Application project allows you to apply your existing knowledge of Windows application development in Visual Basic. As an interesting parallel, we will show you how to create the same application from the previous chapter, but on a Web page. After you have mastered the basics in this chapter, the second part of the book provides additional detail on how you can use your VB knowledge on the Web.

Note

Web page design (making pages pretty) and Web application development (making pages functional) are two distinct areas of Web development. In this book, we cover both, but primarily are concerned with the latter activity.



    Team-Fly    
    Top
     



    Special Edition Using Visual Basic. NET
    Special Edition Using Visual Basic.NET
    ISBN: 078972572X
    EAN: 2147483647
    Year: 2001
    Pages: 198

    flylib.com © 2008-2017.
    If you may any questions please contact us: flylib@qtcs.net