Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Sample Chapters > ASP.Net


Search:
What's New - What's Hot
Apache Commons EqualsBuilder and HashCodeBuilder  Version: 0.00     Price: $0.00  
Total Hits: 46  |  Today: 0Author: Bikash Shaw      Rating:  
Read Reviews | Write Review |  Your Rating: 

Before we go ahead and explore Apache Commons EqualsBuilder and HashCodeBuilder we must know the relationship between equals and hashCode.
java.lang.Object which is the super class of all Java classes has two very important methods defined in it. They are -

* public boolean equals(Object obj)
* public int hashCode()

These two methods are very important when our classes deal with other Java classes such as Collection API used for searching, sorting, comparison and elim...

ASP.NET Developer's Cookbook, Chapter 13     
Total Hits: 707  |  Today: 0Author: Steven A. Smith and Rob Howard      Rating:  
Read Reviews | Write Review |  Your Rating: 

ASP.NET provides several Web controls that make displaying data on a Web page easier than ever before. This chapter shows you how to take advantage of a process called data-binding to easily display data in a variety of formats using very little code. This chapter covers many of the most commonly used features of the Repeater, DataList, and DataGrid, including some fairly advanced DataGrid features. Using these data-bound Web controls, it is very easy to write data-driven Web Forms by just dragg...

Chapter 2. Web Forms Internals     
Total Hits: 609  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

ASP.NET pages are dynamically compiled on demand when first required in the context of a Web application. Dynamic compilation is not specific to ASP.NET
pages (.aspx files); it also occurs with Web Services (.asmx files), Web user controls (.ascx files), HTTP handlers (.ashx files), and ASP.NET application files such as the global.asax file. But what does it mean exactly that an ASP.NET page is compiled? How does the ASP.NET runtime turn the source code of an .aspx file into a .NET Framework ...

ASP.NET Website Programming: Deploying the Site     
Total Hits: 613  |  Today: 0Author: Marco Bellinaso and Kevin Hoffman      Rating:  
Read Reviews | Write Review |  Your Rating: 

The release of ASP.NET forces us to reconsider many preconceptions about the deployment of websites. For example, we need to get used to the possibility of running multiple copies of the same site on a single server, sharing different versions of identically named DLLs. Another thing that developers might find incredible is XCopy deployment, which allows a developer to deploy an application by simply copying files to the target location. There's no need to use the Registry or any complex COM reg...

Chapter 1 ASP.NET Language Structure     
Total Hits: 523  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

ASP.NET presents a whole new approach to developing dynamic content for the Internet or your intranet. With ASP, the process was very linear.A page was requested, and your ASP code returned HTML tags either directly or indirectly through the Response object. You then received the visitor’s input through the Request object....

4. ASP.NET Server Controls     
Total Hits: 476  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

A control is a reusable piece of software functionality that usually provides a visible interface. Server controls are those controls that run on a server (vs. Windows Forms controls). In addition to using <% %> to code blocks to program dynamic content, Web Forms pages developer can use ASP.NET server controls to generate HTML elements. Server controls are declared within an .aspx file using custom tags or intrinsic HTML tags that contain a runat=””server” attribute value....

Sample Chapter: Professional ASP.NET     
Total Hits: 615  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

When Microsoft announced ASP.NET at the Professional Developer's Conference (PDC) in July 2000, the book vendors quickly realized how awesome Microsoft's ASP.NET was in scope, and how powerful and useful it would become. Not surprisingly, a slew of books from many publishers have already found their way to the bookshelves, and, at the time of this writing, we're just in the second beta of ASP.NET!...

Sample Chapter: Professional ASP.NET     
Total Hits: 692  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

When Microsoft announced ASP.NET at the Professional Developer's Conference (PDC) in July 2000, the book vendors quickly realized how awesome Microsoft's ASP.NET was in scope, and how powerful and useful it would become. Not surprisingly, a slew of books from many publishers have already found their way to the bookshelves, and, at the time of this writing, we're just in the second beta of ASP.NET!...

Day 16: Creating Web Services     
Total Hits: 544  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Sams Teach Yourself ASP.NET in 21 Days will strive to introduce readers to ASP.NET through individual lessons contained in chapters. These lessons will begin with a thorough overview of the technology and framework involved, and gradually expand to more difficult lessons requiring deeper engineering skills and knowledge. Although each chapter will be self-contained, each subsequent chapter will build upon previous lessons to ensure that each topic is not only taught, but also used....

Accessing XML Documents     
Total Hits: 670  |  Today: 0Author: Alex Homer, Dave Sussman      Rating:  
Read Reviews | Write Review |  Your Rating: 

I was recently asked to review "ASP.NET Distributed Data Applications" from Wrox Press. Normally I tend to shy away from doing book reviews because in order to do it right, it usually means I have to read the book and that takes time! On this occasion, I decided to make an exception because the book is by Alex Homer and Dave Sussman. Both are excellent authors which bodes well for the book, but the real reason I'm going to spend the time is because I don't usually use a lot of books and yet I ba...

Chapter 3: Customizing the HTML Output     
Total Hits: 472  |  Today: 0Author: Scott Mitchell      Rating:  
Read Reviews | Write Review |  Your Rating: 

Almost a full year ago I (Scott Mitchell) began writing a regular article series about the ASP.NET DataGrid Web control. The series, titled An Extensive Examination of the DataGrid Web Control, as of February 2003, is comprised of 13 parts.In beginning an in-depth examination into the DataGrid, I realized that my online article series could easily span 50 to 100 "parts." I decided to turn this wealth of information into a book, one that focuses strictly on the DataGrid, DataList, and Repeater We...

Building Websites with the ASP.Net Community Starter Kit     
Total Hits: 476  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Microsoft's ASP.NET Community Starter Kit (CSK) is a powerful, freely available application that allows you to quickly create a fully featured community-driven website, complete with article and news management, downloads, forums, and user handling. Supported and tested by thousands of developers in the ASP.NET community across the world, the Community Starter Kit offers you the luxury of a scalable and extensible architecture, and the ability to brand your own site. This book will take you insi...

Building Websites with VB.NET - Chapter 7: Creating Custom Modules     
Total Hits: 807  |  Today: 0Author: Mohan Raphel      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this chapter, we are going to walk you through creating a custom module for the CoffeeConnections portal. A custom module can consist of one or more custom web controls. The areas we will cover are: Creating a private assembly project to build and debug your module, Creating View and Edit controls, Adding additional options to the module settings page, Implementing the IActionable, ISearchable, and IPortable interfaces, Using the Dual List Control, Creating a SQLDataProvider, Packaging your m...

Build Your Own ASP.NET Website Using C# And VB.NET, Chapter 1 - Introduction to .NET and ASP.NET     
Total Hits: 910  |  Today: 0Author: Zak Ruvalcaba      Rating:  
Read Reviews | Write Review |  Your Rating: 

ASP.NET is one of the most widely adopted Web application platforms available today. As a Web developer it's therefore becoming increasingly important to expand your skills and learn the ins-and-outs of a technology that's now used by major organizations such as Accenture, Compaq, AIG, Bank of Nova Scotia, Adobe, Dell, Ford and many others. This series covers the basics the new (or practicing) .NET developer will need to know before they being to develop a Website in ASP.NET....

Build Your Own ASP.NET Website Using C# And VB.NET, Chapter 4 - Web Forms and Web Controls     
Total Hits: 1177  |  Today: 0Author: Zak Ruvalcaba      Rating:  
Read Reviews | Write Review |  Your Rating: 

As you might have realised from our work in the previous chapter, at the heart of ASP.NET is its ability to create dynamic form content. Whether you're creating a complex shopping cart application, or a simple page to collect user information and send the results out via email, Web Forms have a solution. They allow you to use HTML controls and Web controls to create dynamic pages with which users can interact. In this chapter, you will learn how Web Forms, HTML controls, and Web controls, in con...

Infrastructure to develop a web application (web site)     
Total Hits: 608  |  Today: 0Author: Tony John      Rating:  
Read Reviews | Write Review |  Your Rating: 

This chapter explains what are the infrastructure you need to develop a web application. In the real world situation, a web server will be hosted on a secure server, located in a safe place and will be always connected to high speed internet. However, to develop a web application, you don't need to worry about security and internet connectivity. You can use your own development computer as the 'Web Server'....

Windows Applications and Web Applications     
Total Hits: 1730  |  Today: 0Author: Tony John      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article gives an introduction to various types of computer programs and explains the concepts behind a web application. Developers are often confused about the difference between Windows Applications and Web Applications. This chapter gives brief information about various types of computer applications and provides an introductions to web applications....

ASP.Net Tutorial for Beginners - What is this all about?     
Total Hits: 1688  |  Today: 0Author: Tony John      Rating:  
Read Reviews | Write Review |  Your Rating: 

Welcome to ASP.NET Tutorial (Using VB.Net and C#). By completing the lessons and exercises in this book, you will acquire the skill and knowledge necessary to develop large enterprise web-based application in VB.Net or C#. This tutorial is specially designed for the beginners and students who are in the starting point of their IT carrier. Plain and simple English is used throughout the tutorials so that every one can understand the concepts we are discussing....

User Controls and Custom Server Controls, Part 1     
Total Hits: 593  |  Today: 0Author: Matthew MacDonald and G. Andrew Duthie      Rating:  
Read Reviews | Write Review |  Your Rating: 

Reuse is a technique that is important to most developers. Reuse allows you to avoid constantly reinventing the wheel by using functionality that has already been built and tested. It increases productivity, by reducing the total amount of code you need to write, and reliability, since by using tested code, you (presumably) already know the code works reliably....

Creating Web Services     
Total Hits: 384  |  Today: 0Author: Sam Series      Rating:  
Read Reviews | Write Review |  Your Rating: 

Sams Teach Yourself ASP.NET in 21 Days is the perfect book to introduce beginner and intermediate readers to the new technologies and frameworks presented by ASP.NET. By guiding readers through short but increasingly complex lessons, this book will give readers a strong foundation in ASP.NET, and the knowledge to develop their own creative solutions. Readers will delve into the new framework, the C# and Visual Basic programming languages, and techniques to approach difficult problems. This free ...


1  2  3  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net