Creating an ASP.NET Application using Microsoft Visual Studio 2010: A Comprehensive Guide, Slides of Computer Programming

An overview of creating an asp.net application using microsoft visual studio 2010. It covers the introduction to visual studio 2010, its tools, and the design surface. Additionally, it explains how to create a new web site, use the toolbox, and debug the application. Intended for university students and lifelong learners.

Typology: Slides

2012/2013

Uploaded on 09/27/2013

vikrant
vikrant 🇮🇳

4.4

(9)

119 documents

1 / 10

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Web Development in
Microsoft Visual Studio
2010
docsity.com
pf3
pf4
pf5
pf8
pf9
pfa

Partial preview of the text

Download Creating an ASP.NET Application using Microsoft Visual Studio 2010: A Comprehensive Guide and more Slides Computer Programming in PDF only on Docsity!

Web Development in

Microsoft Visual Studio

Lecture Overview

 How to create a first ASP.NET application

Visual Studio Windows

 The Toolbox contains HTML controls and ASP.NET controls  Drag control instances using Design or Source view  The Solution Explorer lists the application’s files  The Properties window is used to set object properties  Other windows work as you would expect

ASP.NET Development in

Visual Studio (Illustration)

The Design Surface

 It’s conceptually similar to the Windows Forms Designer  Views  Design view is displays a ‘rough’ visual representation of the page  Source view displays the code for the page itself

Debugging

 Debugging windows work the same way in desktop and ASP.NET applications  Set breakpoints on executable code lines  Print values to the Immediate window  Use Watch windows to interrogate the values of variables  It’s possible to debug client-side Java script  Note that script debugging must be enabled

Creating a New Web Site (2)

 Visual Studio creates  A default Web page named default.aspx  A code-behind file containing C# or VB code  A web.config file to configure the application