Discover Classes. Earn 10% Rewards.

ASP.NET Web Forms Programming Using Visual Basic.NET is unfortunately unavailable

Thankfully we have 23 other .NET Classes for you to choose from. Check our top choices below or see all classes for more options.

Financial Analysis

American Management Association

Learn how to increase company value and evaluate past performance in this seminar dedicated to helping managers succeed. Perfect for those responsible for managing a department or business unit, evaluating acquisitions, or assessing the financial condition of customers or vendors.

(5) All levels 21 and older
$2,695

3 sessions

Attend
+26950 pts
Gift it!

Intermediate Financial Accounting

Noble Desktop - Virtually Online

Deepen your knowledge of complex financial accounting concepts in this intermediate-level course at Noble Desktop. Take your accounting skills to the next level and gain insight into handling unusual items, restructuring charges, deferred taxes, and more. Build a strong foundation in investments and securities to tackle complicated accounting tasks.

(373) Intermediate 18 and older

C# Programming Level 2: Advanced Programming Techniques

ONLC Training Centers @ Online Classroom

In this C# training course, students already familiar with C# programming will learn advanced C# techniques. This advanced C# course is taught using C# 8. Prerequisites: Students should have experience with C# and working knowledge of the skills covered in Core Skills: Level 1.  Specifically, you should know: How C# works and its place in the world of programming languages Its relationship with the Common Language Infrastructure and...

(7) All levels 18 and older
$995

2 sessions

Attend
+9950 pts
Gift it!

C# Programming Level 1: Introduction for Programmers

ONLC Training Centers @ Online Classroom

In this live, instructor-led training course, students who already have a programming background will learn to program in C#. Attendees will learn: how C# works and its place in the world of programming languages; its relationship with the Common Language Infrastructure and .NET Framework; C# data types and operators; to write selection statements and loops; generic programming and working with collections; processing data; and error handling. This...

(7) Beginner 18 and older
$1,195

3 sessions

Attend
+11950 pts
Gift it!

Angular Programming: Level 1

ONLC Training Centers @ Online Classroom

Become adept at building dynamic web applications with Angular in our comprehensive programming course. Master the key concepts and techniques needed to create robust and interactive web solutions.

(7) Beginner 18 and older
$1,195

3 sessions

Attend
+11950 pts
Gift it!
See all .NET classes Online

ASP.NET Web Forms Programming Using Visual Basic.NET

  • Intermediate
  • 18 and older
  • $2,795
  • Earn 27,950 reward points
  • Price Lock Guarantee
  • ILT, remote-live, on-demand or on-site
  • 40 hours over 5 sessions

Start Dates (0)

  • $2,795
  • 40 hours over 5 sessions
Showing 10 of 0

Class Description

Description

What you'll learn in this .net training:

All HOTT courses are available face-to-face, remote-live, on-demand or on-site at your facility

This course provides students with hands on experience using Visual Studio to create dynamic Web sites with ASP.NET Web Forms and the .NET Framework using VB.NET. The class provides a thorough introduction to the VB.NET programming language, including coverage of the essentials of the VB.NET programming language, built in data types, operators, control structures, classes and methods, collections and exception handling.


Students then learn how to leverage the power of the .NET Framework to build Web user interfaces. Students will learn use the power of ASP.NET Web server controls combined with HTML5 to design Web pages. They will use ASP.NET Validation controls to provide both client-side and server-side data validation for user input. Students will learn how to use master pages to enforce a consistent look and feel across a set of Web pages, as well as how to use user controls to reuse smaller pieces of HTML across multiple pages.


Students explore the complexities of state management in ASP.NET Web Forms and how to use session and view state objects to manage state between HTTP requests.


Students spend time exploring how to use ADO.NET to interact with databases by running SQL queries and executing stored procedures. They will also learn how to read/write XML files using DataSets and DataTables. Students learn how ASP.NET Web Forms data binding to easily display data in list controls, the GridView control and the DetailsView control.


Microsoft provides support for Ajax-enabled Web Forms applications using the ASP.NET AJAX Framework. Students will learn how to use some of the server-side features to make asynchronous postbacks from the browser, perform partial page updates using the UpdatePanel, use CSS to dim a page during postback and use the Timer fetch data from the server asynchronously.


Other topics include: using a Web.config file to control application configuration; working with the query string; working with cookies; reading and writing files; and deploying ASP.NET web applications. Comprehensive labs provide the students with extensive experience creating and deploying dynamic ASP.NET Web Form applications.


Prerequisites: Knowledge of fundamental HTML syntax is helpful, but not required. Prior experience with a scripting or programming language is required.



Course Syllabus:

Introduction to .NET

  • Overview of the .NET Framework
  • How .NET is Different from Traditional Programming
  • Common Language Runtime (CLR)
  • Common Language Specification (CLS)
  • Common Type System (CTS)
  • .NET Assemblies
  • Microsoft Intermediate Language (CIL)
  • .NET Namespaces
  • .NET Framework Class Library

Introduction to Visual Studio

  • Creating a Project
  • Using the Code Editor
  • Correcting Syntax Errors
  • Setting Project Properties
  • Adding References
  • Compiling a Program
  • Running a Program
  • Debugging a Program
  • Using the MSDN (Help)

Language Fundamentals

  • VB.NET Program Structure
  • Defining Namespaces
  • Understanding VB.NET Data Types
  • Defining Variables and Constants
  • Comparing Value Types versus Reference Types
  • Working with Operators and Expressions
  • Performing Type Conversions
  • Using Console I/O
  • Formatting Numbers, Date and Times

Conditionals and Looping

  • If/Else
  • Select Case
  • Do/Loop
  • While
  • For
  • For Each

Procedures and Parameters

  • Subroutines vs. Functions
  • Defining Shared and Instance Methods
  • Passing Parameters by value and by reference
  • Overloading Methods
  • Using Variable Length Parameter Lists

Exception Handling

  • What are Exceptions?
  • .NET Exception Hierarchy
  • Catching Exceptions
  • Throwing Exceptions
  • Managing Resources with Finally

Collections

  • Defining and Using Arrays
  • Understanding System.Array
  • .NET Collections vs Generic Collections
  • Working with Lists
  • Working with Dictionaries
  • Using LINQ to Objects

Object-Oriented Programming

  • Overview of Object-Oriented Programming
  • Building Classes
  • Defining Properties
  • Using Auto-Implemented Properties
  • Defining Methods
  • Understanding Constructors
  • Extending .NET Classes via Inheritance
  • Defining and Implementing Interfaces
  • Understanding the Role of Interfaces in .NET

Overview of ASP.NET Web Forms

  • ASP.NET Technologies
  • Web Forms vs. MVC
  • Understanding the HTTP Request and Response Cycle
  • Client-Side vs. Server-Side Code Execution
  • Exploring an ASP.NET Web Form
  • Understanding the Life-Cycle of an ASP.NET Page Object

Creating ASP.NET Web Forms Applications

  • Building ASP.NET Web Forms Applications Using Visual Studio
  • Understanding a Web Form Application Project Structure
  • Designing Web Forms
  • Incorporating CSS into the Web Application
  • Understanding the Page Directive
  • Working with the Code-Behind Model
  • Understanding Web.config
  • Transformational Config Files

Using ASP.NET Server Controls

  • Working with Web Server Controls
  • Using Hyperlinks and Button-Based Controls
  • Using Label and Textbox Controls
  • Using List Controls
  • Using the Image Control
  • Exploring Other Web Server Controls

Handling Events

  • Working with Page-Based Event Handlers
  • Writing Control Event Handlers
  • Sharing Event Handlers
  • Understanding PostBack vs. Non-PostBack Events
  • Handling Application-Based Events in Global.asax

Using ASP.NET Validation Controls

  • Understanding ASP.NET Validation Controls
  • Performing Client-Side Validation
  • Performing Server-Side Validation
  • Using the Required Field Validator
  • Using the Comparison and Range Validators
  • Using the Regular Expression Validator 
  • Customizing Validation
  • Working with Validation Groups
  • Unobtrusive Validation
  • Using the NuGet Package Manager to Download AspNet.ScriptManager.jQuery

Reusing Design: User Controls and Master Pages

  • Reusing HTML Snippets with User Controls
  • Designing a User Control
  • Embedding a User Control on a Page
  • Understanding the Master Page Architecture
  • Designing a Master Page
  • Designing Content Pages

Maintaining State

  • Maintaining State within ASP.NET Web Forms Applications
  • Using the Session Object
  • Using the ViewState Object
  • Reading and Writing Cookies
  • Using the Query String

ADO.NET

  • Understanding the ADO.NET Object Model
  • Connected vs. Disconnected Access
  • Using a Connection to Connect to a Data Source
  • Using a Command to Execute Queries and Stored Procedures
  • Using a DataReader to Work with Cursors
  • Using a DataSet with Disconnected Data
  • Using DataAdapters with DataSets

Using XML

  • Introducing XML and XML Schemas
  • Writing XML Schemas with a DataSet
  • Reading XML Schemas with a DataSet
  • Writing XML Data with a DataSet
  • Reading XML Data with a DataSet

Using Data Binding

  • Understanding ASP.NET Data Source Controls
  • Configuring Data Sources
  • Examining ASP.NET Data Bound Controls
  • Using List Controls
  • Using the GridView Control
  • Using the DetailsView Control
  • Exploring Other Data Bound Controls

Introduction to ASP.NET AJAX

  • Understanding Ajax
  • Enabling ASP.NET AJAX with the ScriptManager
  • Configuring Partial Page Updates with the UpdatePanel
  • Displaying a Progress Indicator Using UpdateProgress
  • Making Periodic Postbacks Using the Timer
  • Using the NuGet Package Manager to Download jQuery

Deploying ASP.NET Applications

  • Configuring IIS for Deployment
  • Configuring an ASP.NET Web Form Application for Deployment
  • Using Publish to Deploy a ASP.NET Web Application

Remote Learning

This course is available for "remote" learning and will be available to anyone with access to an internet device with a microphone (this includes most models of computers, tablets). Classes will take place with a "Live" instructor at the date/times listed below.

Upon registration, the instructor will send along additional information about how to log-on and participate in the class.

Refund Policy

Tuition includes all course materials. Students may withdraw before the second day of class to receive a 100% refund, provided course materials are returned to the instructor. Prorated refunds may be granted for withdrawals after the first day.

Cancellations and Changes: There are no cancellation fees.

Attendance Requirements: Students must attend each day of a course and successfully complete hands on exercises in order to receive a certificate of completion. If a student wishes to retake any portion of a class that he or she completes, the student may do so within 12 months at no extra cost.

Intended Audience: Hands On Technology Transfer, Inc., provides IT training designed for technology professionals who wish to quickly upgrade their computer skills. In most states, the employer bears all training costs.

Reviews of Classes at Hands On Technology Transfer, Inc. (7)

Benefits of Booking Through CourseHorse

  • Booking is safe. When you book with us your details are protected by a secure connection.
  • Lowest price guaranteed. Classes on CourseHorse are never marked up.
  • This class will earn you 27950 points. Earn 10% back in reward points!

Questions & Answers (0)

Get quick answers from CourseHorse and past students.

Hands On Technology Transfer, Inc.

HOTT delivers instructor-led technical training across the United States, Canada and the United Kingdom. Whether you attend in person, remote-live or on-demand, our classroom-based training philosophy zeroes in on your ability to work more productively and with higher quality results after training....

Read more about Hands On Technology Transfer, Inc.

CourseHorse Approved

This school has been carefully vetted by CourseHorse and is a verified Online educator.

Hands On Technology Transfer, Inc.

Give This Course as a Gift Card

  • Thousands of classes
  • No expiration
  • Unique and memorable gifts for any occasion
  • Personalized
  • Explore a passion, gain a new skill, discover a new hobby, engage in a memorable experience
  • Instant delivery
  • Lock in a price with the Inflation Buster Gift Card Price Adjuster™

Buy a Gift Card

Book this Class as a Group Event

Booking this class for a group? Find great private group events

Or see all Coding Group Events

Explore group events and team building activities ranging from cooking, art, escape rooms, trivia, and more.

  • Price Lock Guarantee

    Secure your booking now and we'll match any price drop within 48 hours across all booking platforms, ensuring you never miss out on savings!

  • Earn 10% Reward Points

    Maximize your savings with every purchase. Unlock rewards on every transaction, ensuring you get the most value out of your experience!

  • No Added Fees

    Enjoy hassle-free transactions without worrying about additional charges. With us, what you see is what you pay - no surprises!

  • Curated Courses

    Discover a curated selection of courses handpicked by experts in the field. Dive into quality content that suits your learning needs and interests!

CourseHorse Gift Cards

  • Creative & unique gift for any occasion
  • Thousands of classes & experiences
  • No expiration date
  • Instant e-delivery (or choose a date)
  • Add a personalized message
  • Lock in a price with the Inflation Buster Gift Card Price Adjuster™
Buy a Gift Card
gift card with the CourseHorse logo gift card with the CourseHorse logo
Loading...