| ||||||||||||
Product Details
Would you like to update product info or give feedback on images?
|
|
Share your thoughts with other customers:
|
||||||||||||||||||||||
|
Most Helpful Customer Reviews
30 of 30 people found the following review helpful:
5.0 out of 5 stars
.NET tour guide.,
By Eric (Minneapolis,MN USA) - See all my reviews
This review is from: Microsoft .Net for Programmers (Paperback)
This book is very well written, both technically and grammatically (which is something you can't say for all computer books). While it would be next to impossible to cover .NET in it's entirety, this books does an excellent job covering the fundamentals of .NET in a reasonable number of pages: The CLR - This section is dedicated to the CLR, it's types (there is a descriptive explanation on the difference between value and reference types), System.Object (the base class of every .NET type), deterministic finalization, assemblies (multi-file, private, global and downloadable assemblies are all covered), reflection (dynamically examining a type at runtime), and the basics of intermediate language. At the end, the author builds a very simple compiler to demonstrate how the compilers for .NET translate instructions into intermediate language, which in turn is executed by the CLR at runtime. ADO.NET - Through many code samples, ADO.NET is given adequate coverage. The DataSet (equivalent to a disconnected ADO Recordset) and DataReader (equivalent to a server side forward-only ADO Recordset) are both covered. Updating a database, both via the DataSetAdapter and directly through Command objects is also covered. This chapter also covers using a DataSet to produce XML and how to serialize (an exciting new topic in .NET) object instances to XML. It would be impossible to cover every aspect of ADO.NET in a single chapter, but this chapter does provide enough information to get acquainted with your available data access options. The MSDN documentation included with the .NET framework or VS.NET should be your next step in figuring out what each property and method does. If you have used ADO in the past, because they share similar interfaces, ADO.NET shouldn't seem that foreign to you. Remoting - This was my favorite chapter. Remoting in .NET is the means for communication between assemblies, processes and remote computers. It's the replacement for DCOM, and because it is able to work using HTTP, it's finally able to work over corporate firewalls without too much hassle. There are a ton of code samples and diagrams to help understand nearly every aspect of Remoting: the available options (Client Activated, SingleCall, and Singleton), configuration, leasing and handling remote events. If your interested about Remoting, it would be in your best interest to code up the samples in this chapter and run them to see what is actually happening with each different option (Client Activate, SingleCall and Singleton) and configuration setting (leasing, channel type, events, etc...). Web Services - Web Services are a new option in .NET. The closest comparison from days of old (feels kind of funny saying that) would be XML over HTTP or Soap. I never used the VB Soap toolkit, so I can't comment on it, but I've found Web Services in .NET extremely easy to use. The basics of creating a Web Service are covered, as are more advanced topics such as WSDL, Discovery and UDDI. The chapter also covers writing clients to communicate with the Web Services and how to manage session state between Web Service calls. ASP.NET - The coverage of ASP.NET will be most beneficial to someone who has done web programming before, because it assumes a certain level of core competencies. Those who have used ASP in the past will have the easiest time learning ASP.NET from the material covered here. To show how things have changed, the author starts out with a dynamic page written in ASP and ports it to ASP.NET outlining the steps taken. Your also treated to instructions on how to create custom HTTP handlers and modules (similar to an ISAPI extensions and filters), which I found to be interesting. Finally, coverage is given to creating ASP.NET pages in the VS.NET IDE. Windows Forms - Windows Forms allows you to create rich Win32 client applications in .NET. This section starts of with the basics: forms, controls, and event handling and then shows in-depth how to build an example application. At the end of the chapter, you are shown how to use the VS.NET IDE to make building Windows Forms applications quicker and easier. Other - Other topics covered, but not in as much detail as those topics outlined above, include: Windows NT/2000 event logging, COM Interop, MSMQ, Windows Services, XSL transformations and using the new mobile controls in ASP.NET. There are a large number of code samples, ranging from simple proof of concept exercises to multiple class case studies. The code samples go hand in hand with the presented explanations and topic discussions located in each chapter. For best results, I'd recommend keying them in, compiling, and testing them out. If you're an intermediate/advanced C++, Java or Visual Basic programmer, who hasn't yet made the journey to .NET, this book is the tour guide you need. In a clear and concise manner it presents what is possible in the new world of .NET, what you need to be effective with the new tools and technologies, and a generous helping of useful code examples to get you started. It should be noted that the book samples are written in C#. For those new to C# (which should be just about everyone) an included appendix is required reading. That said, the rest of the book, while written in C#, mainly covers the fundamentals of .NET and the Framework Class Libraries which for most part are language agnostic.
16 of 17 people found the following review helpful:
5.0 out of 5 stars
Well-written with a great, pracitcal example,
By
This review is from: Microsoft .Net for Programmers (Paperback)
OVERALL ASSESSMENTThis book is aptly named. Not for the beginner, but for the experienced programmer seeking a deeper understanding of .NET development and practical examples of distributed computing, I found this book to be very helpful, very succinct, and very entertaining. Contrary to some of the other titles on the market, Grimes doesn't try to pad the book with 28 chapters, the first 20 of them being the obligatory content explaining the role and function of .NET, what XML, SOAP, and UDDI are, and a primer in coding, and only briefly getting into the core purpose of the book. It gets right into the tough stuff. Grimes instead gives a higher-level viewpoint of programming with .NET, explaining advanced concepts like .NET's garbage collection methodology, memory management, and applications architecture planning, from a best-practices approach. Grimes bases his book's existence on an example that spans the entire text - building a poker game app. Throughout the text, Grimes constructs and expands upon a concept that is simple enough to be relative to everyone yet complex to be an effective lesson in distributed app design. He abstracts this app out to 11 different versions all calling the same app, including a Windows version, a Web-based version, a message queue, a console version accessible through UNIX telnet commands, a mobile version and an XML Web service, which is a great lesson in showing the ease with which .NET developers may create powerful distributed applications. It's beautifully written, well-proofread, and quite comprehensive for only 288 pages (not counting the excellent appendices dealing with an Introduction to C#, and detailed source code for the examples). It's a great addition to the reference library of the advanced programmer, or the intermediate developer looking to take their game to the next level. In short, it's a very disciplined, structured approach to working with .NET. WHAT I DO LIKE - The use of graphics is excellent - easy to follow and nicely arranged.
10 of 10 people found the following review helpful:
5.0 out of 5 stars
Excellent Presentation of Major .NET Features and Fun, Too,
By
This review is from: Microsoft .Net for Programmers (Paperback)
With the release of Microsoft's .NET platform, many developers are just starting to dig into the massively rich offering of classes, tools, program types, and capabilities that are available. This can surely be a daunting task for the average (and even above average) Visual Basic or ASP developer. In his book "Microsoft .NET for Programmers", by Manning, Fergal Grimes tackles the job of presenting many of the major features available in .NET through a most enjoyable and ingenious approach. The author uses a case study of implementing "video poker" in many different guises to give the reader an understanding of the different .NET programming types. The book proceeds from development of the core poker engine, employing object-oriented programming techniques and design patterns which are tested from a console interface, to the development of more distributed applications involving databases, remoting, messaging, Windows client interface, web-based client interface, and web services versions. The use of C# should not deter VB programmers from reading this book. The discussion of fundamental concepts are well written, and the code is understandable without being overly complex or obtuse. The ASP.NET, Web Services, and Remoting sections are well-worth a look. Above all, Grimes has taken a massive subject and reduced it to a fun series of programs that is more than just an introduction to .NET.
Share your thoughts with other customers: Create your own review
|
|
Tags Customers Associate with This Product(What's this?)Click on a tag to find related items, discussions, and people.
|
|
This product's forum
Active discussions in related forums
Search Customer Discussions
|
Related forums
|