Skip navigation

Developer .NET UPDATE, October 1, 2002

Developer .NET UPDATE—brought to you by the Windows & .NET Magazine Network
http://www.winnetmag.com


THIS ISSUE SPONSORED BY

Microsoft ASP.NET Connections
http://lists.sqlmag.com/cgi-bin3/flo?y=eNep0C5ruY0Bbp04zP0AS

Windows & .NET Magazine LIVE!
https://secure.win2000mag.com/events/windows_register.asp
(below DEVELOPER .NET PERSPECTIVES)


SPONSOR: MICROSOFT ASP.NET CONNECTIONS
LAST CHANCE TO SAVE ON LARGEST .NET DEVELOPER EVENT
More Sessions, Top Quality, Unbeatable Value

DevConnections Conferences provide more sessions at a lower cost than other events focused on Microsoft technologies.

Register today for either Microsoft ASP.NET Connections, VS.NET Connections, or SQL Server Magazine LIVE! and you'll get access to over 160 sessions and save $2,990—but only if you act right now as the Early Bird Discount expires October 4.
https://secure.win2000mag.com/events/asp_register.asp

This deal gets even better: Stay for the week and save $4,985 when you also register for either XML Web Services Connections or Windows & .NET Magazine LIVE!. Register for the entire week and you'll get access to five conferences and 240 sessions! Click now before this offer expires:
https://secure.win2000mag.com/events/xml_register.asp


October 1, 2002—In this issue:

1. DEVELOPER .NET PERSPECTIVES

  • Win Forms vs. Web Forms

2. ANNOUNCEMENTS

  • Mark Minasi and Paul Thurrott Are Bringing Their Security Expertise to You!
  • Take Our Quick Survey and You Could Win a $200 Gift Certificate!

3. RESOURCE

  • Featured Thread: Can't Execute Scripts in ASP.NET Pages

4. NEW AND IMPROVED

  • Develop Internet Applications in Visual Studio .NET

5. CONTACT US

  • See this section for a list of ways to contact us.

1. DEVELOPER .NET PERSPECTIVES
(contributed by Bill Sheldon, [email protected])

  • WIN FORMS VS. WEB FORMS

  • Enterprise applications have a commonality in that they tend to be multi-tiered; the UI, business logic, and database each occupy a separate logical, if not physical, tier. When organizations move toward this type of architecture, a common question is, "How should you partition the logic associated with the application?" In other words, how much of the business logic should the application make available directly to the UI? Do you want to base the enterprise application's design on a thick client developed with Win Forms, such as the client that Microsoft Word provides? Or do you want to base the design on a thin client that relies on browser-based Web Forms, such as the client that Web sites provide?

    Answering these questions require serious study because the answers will affect the design of your class library. By definition, a class library is part of the business-logic tier—and you want to put this middle tier where it most efficiently carries out the processing associated with an application.

    Little doubt exists about where enterprise data should live. As in any data model, enterprise data should live in the location where it will be accessible to anyone who needs it. This location varies based on the data. For example, enterprise data typically resides in an enterprisewide database, whereas a personal memo you write typically resides on your local hard disk.

    Where to host the business logic is trickier than where to store the data. Trade-offs exist between having the business logic centralized with the data or distributed to the clients. If you keep the business logic centralized, traditionally it's easier to maintain. However, the more business logic that's present in the UI, the less the UI needs to communicate with the server and more features can be part of the UI.

    Because of the Internet's growth, browser-based clients were becoming the standard compromise between the challenge of having a rich interactive client and powerful centralized server-based computing—that is, until the Microsoft .NET Framework changed the ground rules. A big disadvantage of traditional Windows enterprise applications is the distribution of new versions of the applications. Even for applications such as Word, which is used throughout the enterprise as opposed to being an enterprise application, the challenge of updating tens of thousands of clients can be daunting. Unlike an update to the next version of Word, most enterprise application updates aren't for feature enhancements but rather for bug resolution.

    Bugs in enterprise applications have the potential for all sorts of costs and liability problems because these applications are often related to a company's primary line of business. In most cases, you can't manually distribute updates, and online update sites have only a limited history of success. Think about how many of the current Word users have installed Service Pack 2 (SP2) from the Microsoft Office Product Updates site and you begin to get the scope of the problem.

    What's great about the .NET Framework is that it lets you not only host updated versions of enterprise applications on the Internet but also have the application automatically check for and install these updates. You can find out more information about this type of Internet deployment for enterprise applications in Billy Hollis's excellent article, "Death of the Browser?," at the following URL:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadvnet/html/vbnet10142001.asp

    The .NET Framework changes not only how you can deploy an enterprise application but also how the application's components communicate with each other. Browser-based development had an advantage because it used HTTP or HTTP Secure (HTTPS) to communicate with the user's browser. In the past, an application had to use a database-connection string relying on a database specific port to pass data to the data repository—and this connection was across a protocol that wasn't Internet friendly. An Internet unfriendly protocol is a limiting factor because security takes priority over increased user friendliness and distributed applications. The .NET Framework development environment builds on the concept of XML Web services. This change affects where to host an enterprise application's business logic.

    XML Web services removes the limits of the communication protocol because you can host a portion of your component on the server near the data repository and use HTTP or HTTPS to communicate between the client and server. Thus, the architecture is compatible with corporate firewalls. This development is huge because it means that you can optimize the communication with the server to improve performance. The one advantage that thick-client applications have over thin-client applications is the amount of data that the server must transmit during runtime. In a thin-client application, the server must not only transmit the application data but also the HTML presentation layer. In many cases, the server transmits this information repeatedly as screens are refreshed. The result is a heavy load on network resources and a real performance impact for those users limited to modem-based connectivity.

    By having a thicker .NET Win Forms client, you can have your business objects communicate with server-based counterparts for the data needed, then manage the processing of the user interaction entirely on the client system. The result is that you gain the power of the client desktop to carry out the majority of processing and gain access to the far richer client UI. When you design the business logic and middle-tier classes, you can use both client- and server-based code to implement the logical class. The power of XML Web services makes tying the code together possible. When you consider the increased connectivity of Win Forms application, the power of XML Web services provides an entire paradigm shift.


    SPONSOR: WINDOWS & .NET MAGAZINE LIVE!

    WINDOWS & .NET MAGAZINE LIVE! TO CO-LOCATE WITH XML WEB SERVICES CONNECTIONS

    Real-World Tips and Solutions Here for You

    Register now for Windows & .NET Magazine LIVE! and attend concurrently run XML Web Services Connections sessions for FREE. You'll save $1,595, but only if you register now before this offer expires October 4. This conference is chock full of "been there, done that" information from people who use these technologies in the real world. Immediately increase your productivity with shortcuts, tips, and tricks you'll learn. Solve those tough interoperability issues, enhance systems administration with new tools, learn how .NET will impact your job, and find out how to make Web services payoff for you and your career. Benefit from our mix of speakers representing magazine authors, Microsoft architects, and third-party gurus. This must-attend event is loaded with practical information you can use right away to help keep your skills sharp.

    Find out how to save almost $5,000 by extending your stay to include Microsoft ASP.NET Connections, VS.NET Connections, and SQL Server Magazine LIVE!. Hurry before this offer expires, go to:
    https://secure.win2000mag.com/events/windows_register.asp


    2. ANNOUNCEMENTS
    (brought to you by Windows & .NET Magazine and its partners)

  • MARK MINASI AND PAUL THURROTT ARE BRINGING THEIR SECURITY EXPERTISE TO YOU!

  • Windows & .NET Magazine Network Road Show 2002 is coming this October to New York, Chicago, Denver, and San Francisco! Industry experts Mark Minasi and Paul Thurrott will show you how to shore up your system's security and what desktop security features are planned for Microsoft .NET and beyond. Sponsored by NetIQ, Microsoft, and Trend Micro. Registration is free, but space is limited so sign up now!
    http://www.winnetmag.com/seminars/roadshow

  • TAKE OUR QUICK SURVEY AND YOU COULD WIN A $200 GIFT CERTIFICATE!

  • We need your opinion! Take our brief survey about Windows management tools, and we'll automatically enter your name into a drawing for a $200 gift certificate from Amazon.com. Click here now to start the survey!
    http://www.zoomerang.com/survey.zgi?v9s03g5yfv1c8gvgyhy7be3x

    3. RESOURCE

  • FEATURED THREAD: CAN'T EXECUTE SCRIPTS IN ASP.NET PAGES

  • A forum member installed Visual Studio .NET on a computer running Windows XP Professional Edition. Later, he also installed Microsoft IIS. However, the member can’t execute scripts in ASP.NET pages. If you can help, go to
    http://www.sqlmag.com/forums/messageview.cfm?catid=13&threadid=8830

    4. NEW AND IMPROVED
    (contributed by Sue Cooper, [email protected])

  • DEVELOP INTERNET APPLICATIONS IN VISUAL STUDIO .NET

  • No Starch Press published Robert B. Dunaway's "The Book of Visual Studio .NET." This book guides you through the tools and technologies in Visual Studio .NET, including ASP.NET, Visual Basic .NET, and XML Web services. "The Book of Visual Studio .NET" shows you how to integrate multiple .NET technologies; solve developmental problems concerning cross-language integration, cross-platform communication, installation, and versioning; use designer, database, and monitoring tools to facilitate rapid application development; access data by using a variety of techniques; and implement COM+ with Enterprise Services. "The Book of Visual Studio .NET" is $49.95. The book will be available mid-October at bookstores or from the publisher. Contact No Starch Press at 415-863-9900, 800-420-7240, or [email protected].
    http://www.nostarch.com

    5. CONTACT US
    Here's how to reach us with your comments and questions:

    (please mention the newsletter name in the subject line)

    This weekly email newsletter is brought to you by Windows & .NET Magazine, the leading publication for Windows professionals who want to learn more and perform better. Subscribe today.
    http://www.winnetmag.com/sub.cfm?code=wswi201x1z

    Receive the latest information about the Windows and .NET topics of your choice. Subscribe to our other FREE email newsletters.
    http://www.winnetmag.net/email

    Thank you for reading Developer .NET UPDATE.

    Hide comments

    Comments

    • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

    Plain text

    • No HTML tags allowed.
    • Web page addresses and e-mail addresses turn into links automatically.
    • Lines and paragraphs break automatically.
    Publish