Articoli correlati a Build Your Own ASP.NET 2.0 Web Site Using C# &...

Build Your Own ASP.NET 2.0 Web Site Using C# & VB - Brossura

 
9780975240281: Build Your Own ASP.NET 2.0 Web Site Using C# & VB
Vedi tutte le copie di questo ISBN:
 
 
Learn how to build impressive ASP.NET 2.0 Websites in bothC# and VB from scratch.Using a practical step-by-step approach, the authorsintroduce the ASP.NET framework, teach you about databasedesign, and walk you through obtaining, installing andconfiguring all the freely available software you need touse ASP.NET 2.0. They then show you how to build severalreal world Web-based applications that you can put to useinstantly in your projects.Readers will learn how to:Develop a fully functional Corporate Intranet with a dynamicnavigation menuCreate an email newsletter system using ASP.NET 2.0Build web forms using web controls, validation controls, andrich controlsProgram in both C# and VBHandle unforseen errors gracefully using a range of errorhandling techniquesSecure applications using form authenticationUse code-behind to streamline code. This book doesn't force you to choose an ASP.NET language inadvance - all code examples are presented in both C#(pronounced see-sharp) and VB. You can choose which one youwant to use, and follow-it throughout the book. Best of all,this book doesn't assume any prior programming knowledge!What The Reviewers Say..."This is a very well written book and an excellent overviewand introduction to developing websites in C#/VB.NET onASP.NET 2.0." - About.com "This is the kind of book most of the developers will belooking for not only to learn the technology faster but alsoto create and develop a real application in a short span oftime." - ASP Alliance"This is not your grandfather's ASP.NET 2.0 tutorial. It isnot condescending, pretentious, stodgy, or deadly boring;rather, it is fresh, fun, even exciting; and, it does nottake itelf too seriously. The topics flow logically from oneto the next. The layout is approachable. The writers' toneis friendly. And, the writing style makes the material veryaccessible. I have yet to find a better book for Webdevelopment novices." - C# Online .NET

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore:

Zak Ruvalcaba holds a Master of Science in Instructional Technology from the National University in San Diego. He has developed Web applications for such companies as Gateway, HP, Toshiba, and IBM. Previous books by Zak Ruvalcaba include The 10 Minute Guide to Dreamweaver 4 (Que Publishing) and Dreamweaver MX Unleashed (Sams Publishing).

Contenuti:
0. Preface 1. Introducing ASP.NET and the .NET Platform * What is ASP.NET? * Installing the Required Software o Installing the Web Server o Installing the .NET Framework and the SDK o Configuring the Web Server o Installing SQL Server 2005 Express Edition o Installing SQL Server Management Studio Express o Installing Visual Web Developer 2005 * Writing your First ASP.NET Page * Getting Help * Summary 2. ASP.NET Basics * ASP.NET Page Structure o Directives o Code Declaration Blocks o Code Render Blocks o ASP.NET Server Controls o Server-side Comments o Literal Text and HTML Tags * View State * Working with Directives * ASP.NET Languages o Visual Basic o C# * Summary 3. VB and C# Programming Basics * Programming Basics o Control Events and Subroutines o Page Events o Variables and Variable Declaration o Arrays o Functions o Operators o Conditional Logic o Loops * Object Oriented Programming Concepts o Objects and Classes o Properties o Methods o Classes o Constructors o Scope o Events o Understanding Inheritance o Objects In .NET o Namespaces * Using Code-behind Files * Summary 4. Constructing ASP.NET Web Pages * Web Forms * HTML Server Controls o Using the HTML Server Controls * Web Server Controls o Standard Web Server Controls o List Controls o Advanced Controls * Web User Controls o Creating a Web User Control * Master Pages * Using Cascading Style Sheets (CSS) o Types of Styles and Style Sheets * Summary 5. Building Web Applications * Introducing the Dorknozzle Project * Using Visual Web Developer o Meeting the Features * Executing your Project o Using Visual Web Developer s Built-in Web Server o Using IIS * Core Web Application Features o Web.config o Global.asax o Using Application State o Working with User Sessions o Using the Cache Object o Using Cookies * Starting the Dorknozzle Project o Preparing the Sitemap o Using Themes, Skins, and Styles o Building the Master Page o Using the Master Page * Extending Dorknozzle * Debugging and Error Handling o Debugging with Visual Web Developer o Other Kinds of Errors o Custom Errors o Handling Exceptions Locally * Summary 6. Using the Validation Controls * Introducing the ASP.NET Validation Controls o Enforcing Validation on the Server * Using Validation Controls o RequiredFieldValidator o CompareValidator o RangeValidator o ValidationSummary o RegularExpressionValidator o CustomValidator * Validation Groups * Updating Dorknozzle * Summary 7. Database Design and Development * What is a Database? * Creating your First Database o Creating a New Database Using Visual Web Developer o Creating a New Database Using SQL Server Management Studio * Creating Database Tables o Data Types o Column Properties o Primary Keys o Creating the Employees Table o Creating the Remaining Tables o Populating the Data Tables * Relational Database Design Concepts o Foreign Keys o Using Database Diagrams o Implementing Relationships in the Dorknozzle Database o Diagrams and Table Relationships * Summary 8. Speaking SQL * Reading Data from a Single Table o Using the SELECT Statement o Selecting Certain Fields o Selecting Unique Data with DISTINCT o Row Filtering with WHERE o Selecting Ranges of Values with BETWEEN o Matching Patterns with LIKE o Using the IN Operator o Sorting Results Using ORDER BY o Limiting the Number of Results with TOP * Reading Data from Multiple Tables o Subqueries o Table Joins * Expressions and Operators * Transact-SQL Functions o Arithmetic Functions o String Functions o Date and Time Functions * Working with Groups of Values o The COUNT Function o Grouping Records Using GROUP BY o Filtering Groups Using HAVING o The SUM, AVG, MIN, and MAX Functions * Updating Existing Data o The INSERT Statement o The UPDATE Statement o The DELETE Statement * Stored Procedures * Summary 9. ADO.NET * Introducing ADO.NET o Importing the SqlClient Namespace o Defining the Database Connection o Preparing the Command o Executing the Command o Setting up Database Authentication o Reading the Data o Using Parameters with Queries o Bulletproofing Data Access Code o Using the Repeater Control * Creating the Dorknozzle Employee Directory o More Data Binding o Inserting Records o Updating Records o Deleting Records o Using Stored Procedures * Summary 10. Displaying Content Using Data Lists * DataList Basics * Handling DataList Events * Editing DataList Items and Using Templates * DataList and Visual Web Developer * Styling the DataList * Summary 11. Managing Content Using Grid View and Details View * Using the GridView Control o Customizing the GridView Columns o Styling the GridView with Templates, Skins, and CSS o Selecting Grid Records * Using the DetailsView Control o Styling the DetailsView * GridView and DetailsView Events o Entering Edit Mode o Using Templates o Updating DetailsView Records * Summary 12. Advanced Data Access * Using Data Source Controls o Binding the GridView to a SqlDataSource o Binding the DetailsView to a SqlDataSource o Displaying Lists in DetailsView o More on SqlDataSource * Working with Data Sets and Data Tables o What is a Data Set Made From? o Binding DataSets to Controls o Implementing Paging o Storing Data Sets in View State o Implementing Sorting o Filtering Data * Updating a Database from a Modified DataSet * Summary 13. Security and User Authentication * Basic Security Guidelines * Securing ASP.NET 2.0 Applications o Working with Forms Authentication * ASP.NET 2.0 Memberships and Roles o Creating the Membership Data Structures o Using your Database to Store Membership Data o Using the ASP.NET Web Site Configuration Tool o Creating Users and Roles o Changing Password Strength Requirements o Securing your Web Application o Using the ASP.NET Login Controls * Summary 14. Working with Files and Email * Writing and Reading Text Files o Setting Up Security o Writing Content to a Text File o Reading Content from a Text File * Accessing Directories and Directory Information o Working with Directory and File Paths * Uploading Files * Sending Email with ASP.NET o Configuring the SMTP Server o Sending a Test Email o Creating the Company Newsletter Page * Summary Appendix 1. A. Web Control Reference * The WebControl Class o Properties o Methods * Standard Web Controls o AdRotator o BulletedList o Button o Calendar o CheckBox o CheckBoxList o DropDownList o FileUpload o HiddenField o HyperLink o Image o ImageButton o ImageMap o Label o LinkButton o ListBox o Literal o MultiView o Panel o PlaceHolder o RadioButton o RadioButtonList o TextBox o Xml * Validation Controls o CompareValidator o CustomValidator o RangeValidator o RegularExpressionValidator o RequiredFieldValidator o Valid...

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreSitepoint Pty Ltd
  • Data di pubblicazione2006
  • ISBN 10 0975240285
  • ISBN 13 9780975240281
  • RilegaturaCopertina flessibile
  • Numero edizione2
  • Numero di pagine689
  • Valutazione libreria

I migliori risultati di ricerca su AbeBooks

Foto dell'editore

Cristian Darie; Zak Ruvalcaba
Editore: SitePoint (2006)
ISBN 10: 0975240285 ISBN 13: 9780975240281
Nuovo Brossura Quantità: 1
Da:
BookShop4U
(PHILADELPHIA, PA, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. . Codice articolo 5AUZZZ000M8Z_ns

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 25,69
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Cristian Darie; Zak Ruvalcaba
Editore: SitePoint (2006)
ISBN 10: 0975240285 ISBN 13: 9780975240281
Nuovo Brossura Quantità: 1
Da:
Ebooksweb
(Bensalem, PA, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. . Codice articolo 52GZZZ01MROK_ns

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 25,69
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Cristian Darie; Zak Ruvalcaba
Editore: SitePoint (2006)
ISBN 10: 0975240285 ISBN 13: 9780975240281
Nuovo Brossura Quantità: 1
Da:
BennettBooksLtd
(North Las Vegas, NV, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. New. In shrink wrap. Looks like an interesting title! 2.4. Codice articolo Q-0975240285

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 57,20
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 5,56
In U.S.A.
Destinazione, tempi e costi