Home / ASP.NET Weblogs

Latest Microsoft Blogs

Browse by Tags

Related Posts

  • The Book of CSS

    There is a LOT of buzz right now about the strength of web technologies for all kinds of development. CSS has always been a bit of a black art to me but as I’ve embraced developing with jQuery I’ve needed to develop some level of expertise. With HTML 5 and CSS 3 we get an [...] Read More...


  • Murach Web Development Books Updated to 4

      [ Click the books above to see them on Amazon ] I’ve said for many years that were I ever to teach a university course on web development Murach’s books would be the textbooks that I would use. Since many folks have emailed me to say that they used these books to learn ASP.NET [...] Read More...


  • ASP.NET 4 Unleashed in Bookstores!

    I’m happy to announce that ASP.NET 4 Unleashed is now in bookstores! The book is over 1,800 pages and it is packed with code samples and tutorials on all the features of ASP.NET 4. Given the size of the book – did I mention that it is over 1,800 pages? -- I can safely say that it is the most comprehensive book on ASP.NET This edition of the book has several new chapters written by Kevin Hoffman and Nate Dudek. Kevin and Nate did a fantastic job of covering the new features of ASP.NET 4 including: The new ASP.NET Chart Control The new ASP.NET QueryExtender Control The new ASP.NET routing framework jQuery You can buy the book from your local bookstore or buy the book from Amazon: Read More...


  • ASP.NET MVC Framework Unleashed in Bookstores!

    ASP.NET MVC Framework Unleashed is now published and available at your local bookstore and Amazon. I devoted over a year of my life to writing this book. At over 700 pages, this book is one of the most comprehensive books on Microsoft’s newest framework for building web applications. Buy the book at Amazon All of the code samples are included in both the C# and VB.NET programming languages in the text of the book. You can download the source code from the book by visiting my publisher’s website at: http://www.informit.com/store/product.aspx?isbn=0672329980 You can download a single file that includes all of the code or you can download the code chapter by chapter. Just click the Downloads tab at the website. I had a lot of help writing this...


  • Book – ASP.NET MVC QUICKLY from Packt Publishing!

    If you read my blog you know that I’m a Web Forms guy. ASP.NET MVC is cool, fun, HIP even, but I’m going to keep working with Web Forms. Still, I need to know about all the web stuff we build at Microsoft, so I’m doing some reading about ASP.NET MVC (even if only to improve my arguments with our MVC guy Stephen Walther :) ) The KEY to this book is “Quickly” Without the appendices the book is 191 pages. But there is allot of information in those 191 ! Appendix A is a reference application. Appendix B deals with Testing and a Mock Framework Appendix C is all recourses ! One of the nice thing about Packt is that they don’t publish “definitive guide”. Packt is to publishing as is Sniper to Military. I highly recommend this a an ASP.NET MVC jump...


  • BOOK – Sample Chapter ASP.NET MVC 1.0

    I've avoided ASP.NET for a long time. Don't get me wrong, it's cool. I just haven't needed it. WinForms suits, and continues to serve me quite well. But still, as a developer who also does a lot of PHP (and other) web development. Sometimes I wanna use the "do it yourself" web dev model.  Enter ASP.NET MVC Some of our guys wrote this book and it's now shipping from Amazon.com You can grab a free sample chapter HERE Technorati Tags: ASP.NET , MVC , Books ! Read More...


  • Chapter 6 - Understanding HTML Helpers

    This is a rough draft of a chapter from the book ASP.NET MVC Framework Unleashed by Stephen Walther. Comments are welcome and appreciated. When the book is published, the text from this blog entry will be removed and only the code listings will remain. Order this Book from Amazon You use HTML helpers in a view to render HTML content. An HTML helper, in most cases, is just a method that returns a string. You can build an entire ASP.NET MVC application without using a single HTML helper. However, HTML helpers make your life as a developer easier. By taking advantage of helpers, you can build your views with far less work. In this chapter, you learn about the standard HTML helpers included with the ASP.NET MVC framework. You learn how to use the...


  • Chapter 5 -- Understanding Models

    This is a rough draft of a chapter from the book ASP.NET MVC Framework Unleashed by Stephen Walther. Comments are welcome and appreciated. When the book is published, the text from this blog entry will be removed and only the code listings will remain. Order this Book from Amazon An ASP.NET MVC model contains all of the business, validation, and data access logic required by your application. In other words, a model contains all of your application logic except the view logic and controller logic. The bulk of your time and effort when building an ASP.NET MVC application is devoted to building your model classes. The focus of this chapter is on creating model classes for data access. In particular, you learn how to build model classes by using...


  • Chapter 4 - Understanding Views

    This is a rough draft of a chapter from the book ASP.NET MVC Framework Unleashed by Stephen Walther. Comments are welcome and appreciated. When the book is published, the text from this blog entry will be removed and only the code listings will remain. Order this Book from Amazon The set of views in an ASP.NET MVC application is the public face of the application. ASP.NET MVC views are responsible for rendering the HTML pages that people see when they visit your website. In this chapter, you learn how to create and work with views. You learn how to pass information from a controller to a view. You also learn how to create both typed and untyped views. Finally, you learn strategies for testing your views. Creating a View The easiest way to create...


  • Chapter 3 - Understanding Controllers

    ASP.NET MVC controllers are responsible for controlling the flow of application execution. When you make a browser request against an ASP.NET MVC application, a controller is responsible for returning a response to that request. Controllers expose one or more actions. A controller action can return different types of action results to a browser. For example, a controller action might return a view, a controller action might return a file, or a controller action might redirect you to another controller action. In this chapter, you learn how to create controllers and controller actions. You learn how to return different types of controller action results. You also learn how to use attributes to control when a particular controller action gets...


Page 1 of 2 (19 items) 1 2 Next >