11:48
What is ASP.NET Part 1
Link for Dot Net Basics, ASP.NET, C# and SQL Server video tutorial http://www.youtube.com/...
published: 13 Oct 2012
author: kudvenkat
What is ASP.NET Part 1
What is ASP.NET Part 1
Link for Dot Net Basics, ASP.NET, C# and SQL Server video tutorial http://www.youtube.com/user/kudvenkat/videos?view=1&flow;=grid All the information that is ...- published: 13 Oct 2012
- views: 59790
- author: kudvenkat
47:00
asp.net tutorial for beginners
For more videos http://www.tutorialaspnet.com/ In this asp.net tutorial for beginners I wi...
published: 20 Apr 2012
author: tutorialaspnet
asp.net tutorial for beginners
asp.net tutorial for beginners
For more videos http://www.tutorialaspnet.com/ In this asp.net tutorial for beginners I will show you asp.net framework 4 with visual studio 2010 with C#. tu...- published: 20 Apr 2012
- views: 129674
- author: tutorialaspnet
14:42
Introducing ASP.NET MVC 5
ASP.NET MVC 5 introduces several new features including attribute routing, a modern identi...
published: 18 Dec 2013
Introducing ASP.NET MVC 5
Introducing ASP.NET MVC 5
ASP.NET MVC 5 introduces several new features including attribute routing, a modern identity system, filter overrides, and a brand new scaffolding system. In this video we'll use Visual Studio 2013 to create a new MVC project and show how to take advantage of these newest capabilities, demonstrating how .NET Web application development is more efficient than ever.- published: 18 Dec 2013
- views: 31
50:30
ASP.NET, HTML5 and the Mobile Web - Scott Hanselman
ABSTRACT: Mobile traffic on the web is exploding. Are you ready? HTML5 can enable you to c...
published: 20 Dec 2012
author: GotoConferences
ASP.NET, HTML5 and the Mobile Web - Scott Hanselman
ASP.NET, HTML5 and the Mobile Web - Scott Hanselman
ABSTRACT: Mobile traffic on the web is exploding. Are you ready? HTML5 can enable you to create mobile sites and applications VERY quickly. ASP.NET MVC 4 inc...- published: 20 Dec 2012
- views: 8382
- author: GotoConferences
17:05
Create a website with ASP.Net - Part 1
Download this project: https://www.dropbox.com/s/ouuod03zyoe8ffz/Webtutorial.zip Starter p...
published: 09 Sep 2012
author: Michiel Wouters
Create a website with ASP.Net - Part 1
Create a website with ASP.Net - Part 1
Download this project: https://www.dropbox.com/s/ouuod03zyoe8ffz/Webtutorial.zip Starter pack: https://www.dropbox.com/s/i26hjlmx5j1ma9n/StarterPack.rar.- published: 09 Sep 2012
- views: 68044
- author: Michiel Wouters
27:10
What is viewstate in asp.net - Part 3
asp.net c# and sql server video tutorials playlists http://www.youtube.com/user/kudvenkat/...
published: 16 Oct 2012
author: kudvenkat
What is viewstate in asp.net - Part 3
What is viewstate in asp.net - Part 3
asp.net c# and sql server video tutorials playlists http://www.youtube.com/user/kudvenkat/videos?view=1&flow;=grid In this video we will learn about 1. Statel...- published: 16 Oct 2012
- views: 26728
- author: kudvenkat
15:15
Part 1 Introduction to asp net web services
Link for code samples used in the demo
http://csharp-video-tutorials.blogspot.com/2013/11/...
published: 06 Nov 2013
Part 1 Introduction to asp net web services
Part 1 Introduction to asp net web services
Link for code samples used in the demo http://csharp-video-tutorials.blogspot.com/2013/11/part-1-introduction-to-aspnet-web.html Link for all dot net and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat/videos?view=1 In this video, we will discuss 1. Creating a simple asp.net web service 2. Technologies (HTTP, XML, SOAP) that are used with asp.net web services Please Note: ASMX web services are a legacy technology. Most of the companies are now using WCF (Windows Communication Foundation) to build XML Web services and XML Web service clients. However, this course will be useful for those who are searching for a job as a dot net developer as there are some companies still using ASMX web services today, and could ask interview questions related to them. In WCF video series we will discuss building XML Web Services and clients. What are web services and why should we use web services? Web services are a standardized way for developing interoperable applications i.e enabling an application to invoke a method of another application. These applications can be on the same computer or different computers. Web services use open standards and protocols like HTTP, XML and SOAP. Since these are open and well known protocols, applications built on any platform can interoperate with web services. For example, a JAVA application can interoperate with a web service built using .NET. Similarly a web service built using JAVA can be consumed by a .NET application. Hyper Text Transfer Protocol (HTTP) is the protocl widely used by web services to send and receive messages. The messaging protocol is SOAP. SOAP stands for Simple Object Access Protocol. SOAP messages are in XML format. Building ASP.NET web services Building ASP.NET web services is easy. Here are the steps. Step 1: Create a an ASP.NET Empty Web Application and name it WebServicesDemo. Step 2: Right click on WebServicesDemo project in solution explorer and add - New Item. From the Add New Item dialog box select Web Service. Change the name of the WebService1.asmx to CalculatorWebServices.asmx. Web Services have .asmx extension. For this reason web services are also often called as ASMX web services. Notice that a webservice is a class that is decorated with [WebService] attribute and inherits from System.Web.Services.WebService base class. The [WebService] attribute tells that the this class contains the code for a web service. WebService Namespace is used to uniquely identify your web service on the internet from other services that are already there on the Web. WebService Namespace can be any string, but it is common to give it a company's internet domain name as they are usually unique. Something like [WebService(Namespace = "http://pragimtech.com/webservices")] It is not mandatory for a web service to inherit from System.Web.Services.WebService base class. However, if the web service has to use ASP.NET session or application state objects, then inheriting from System.Web.Services.WebService base class will provide direct access to these asp.net objects. To allow a web service to be called from Javascript, using ASP.NET AJAX, then decorate the web service class with [System.Web.Script.Services.ScriptService] attribute. In a later video session, we will discuss calling a web service using asp.net AJAX. Step 3: Copy and paste the following code in CalculatorWebServices.asmx using System.Web.Services; namespace WebServicesDemo { [WebService(Namespace = "http://pragimtech.com/webservices")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] public class CalculatorWebServices : System.Web.Services.WebService { [WebMethod] public int Add(int firstNumber, int secondNumber) { return firstNumber + secondNumber; } } } Notice that, the CalculatorWebServices class contains a single method called Add(). This method adds 2 numbers and return the sum. This method is decorated with [WebMethod] attribute. If you want the method exposed as part of the Web service, then the method must be public and should be decorated with [WebMethod] attribute. This attribute has got several properties which can be used to configure the behavior of the XML Web service method. We will discuss these properties in a later video session. At this point we are done building a web service. Run the application by pressing CTRL + F5. Notice that the Add() method that we created in the web service is displayed on the page. Clicking on the method name will take you to page where you can test the method. This page also shows the format of the SOAP request and response messages. SOAP 1.2 is a new version with some major changes. For all the differences between them please refer to the following link http://www.w3.org/2003/06/soap11-soap12.html- published: 06 Nov 2013
- views: 1431
42:27
ASP.Net MVC na Prática - Parte 1
Para saber mais acesse: http://cleytonferrari.com/series/asp-net-mvc/ Comunidade TI Selvag...
published: 19 Jun 2012
author: Cleyton Ferrari
ASP.Net MVC na Prática - Parte 1
ASP.Net MVC na Prática - Parte 1
Para saber mais acesse: http://cleytonferrari.com/series/asp-net-mvc/ Comunidade TI Selvagem: http://www.tiselvagem.com.br/ Esta é a primeira parte da série ...- published: 19 Jun 2012
- views: 22263
- author: Cleyton Ferrari
12:38
Criando Aplicações WEB com ASP.NET e C# - Introdução Aula 1
Você já parou para se perguntar se existe uma forma mais fácil de acessar e manipular dado...
published: 31 Jul 2013
author: mroddolfo
Criando Aplicações WEB com ASP.NET e C# - Introdução Aula 1
Criando Aplicações WEB com ASP.NET e C# - Introdução Aula 1
Você já parou para se perguntar se existe uma forma mais fácil de acessar e manipular dados no .NET. Pois bem a resposta é SIM. Existe varias formas de se ma...- published: 31 Jul 2013
- views: 527
- author: mroddolfo
15:37
conexion base de datos con asp.net (crear , eliminar, modificar e insertar registros)
(utilizando visual studio 2010 profesional y sqlServer 2008). en este video se muestra una...
published: 05 Sep 2012
conexion base de datos con asp.net (crear , eliminar, modificar e insertar registros)
conexion base de datos con asp.net (crear , eliminar, modificar e insertar registros)
(utilizando visual studio 2010 profesional y sqlServer 2008). en este video se muestra una conexion de base de datos con asp.net en donde se Inserta, modific...- published: 05 Sep 2012
- views: 9465
- author: Cristian Emanuel Sanchez Salvador
14:54
How to connect asp.net to a database
This video teaches you to connect a front end to sql data source through form-view, grid-v...
published: 05 Feb 2011
author: deechris27
How to connect asp.net to a database
How to connect asp.net to a database
This video teaches you to connect a front end to sql data source through form-view, grid-view and details-view controls.- published: 05 Feb 2011
- views: 135022
- author: deechris27
60:31
Hướng dẫn thiết kế website asp.net 1 (thầy Kiên ĐH Đồng Tháp)
CSDL update 03/05/2012: http://www.mediafire.com/?b1jldwubdxyc5jz Yahoo Messenger: duyle.c...
published: 05 Dec 2011
author: Lê Duy Lê
Hướng dẫn thiết kế website asp.net 1 (thầy Kiên ĐH Đồng Tháp)
Hướng dẫn thiết kế website asp.net 1 (thầy Kiên ĐH Đồng Tháp)
CSDL update 03/05/2012: http://www.mediafire.com/?b1jldwubdxyc5jz Yahoo Messenger: duyle.caolanh Mail: duyle.caolanh@gmail.com Facebook: http://www.facebook....- published: 05 Dec 2011
- views: 44754
- author: Lê Duy Lê
25:10
Урок №1 по ASP.NET (C#)
Отличный видеоурок для начинающих....
published: 08 Mar 2012
author: Дмитрий Суворов
Урок №1 по ASP.NET (C#)
Урок №1 по ASP.NET (C#)
Отличный видеоурок для начинающих.- published: 08 Mar 2012
- views: 12317
- author: Дмитрий Суворов
60:46
VideoTutorial 1 del Curso de ASP.NET
Este es el VideoTutorial 1 del Curso de ASP.NET. Comienza una serie de VideoTutoriales en ...
published: 13 Oct 2011
author: César Cancino
VideoTutorial 1 del Curso de ASP.NET
VideoTutorial 1 del Curso de ASP.NET
Este es el VideoTutorial 1 del Curso de ASP.NET. Comienza una serie de VideoTutoriales en donde tendremos una aproximación al trabajo con las tecnologías ASP...- published: 13 Oct 2011
- views: 28215
- author: César Cancino
Youtube results:
11:55
¿Como Empezar a Programar? ASP.NET C#
Empezamos de nuevo con los vídeos, en este caso empezamos con ASP.NET, estaré realizando v...
published: 17 Jul 2012
author: Eduardo Corona
¿Como Empezar a Programar? ASP.NET C#
¿Como Empezar a Programar? ASP.NET C#
Empezamos de nuevo con los vídeos, en este caso empezamos con ASP.NET, estaré realizando vídeos para la Web en los próximos tutoriales, y posteriormente reto...- published: 17 Jul 2012
- views: 6986
- author: Eduardo Corona
15:02
ASP.NET Tutorial 1- Introduction and Creating Your First ASP.NET Web Site
Good tutorials for beginners using ASP.NET/C#
A Beginner's Tutorial for Understanding and ...
published: 08 Dec 2013
ASP.NET Tutorial 1- Introduction and Creating Your First ASP.NET Web Site
ASP.NET Tutorial 1- Introduction and Creating Your First ASP.NET Web Site
Good tutorials for beginners using ASP.NET/C# A Beginner's Tutorial for Understanding and Implementing ASP.NET Beginners Introduction to ASP.NET asp.net tutorial for beginners Searches related to asp .net tutorial for beginners asp .net tutorial for beginners free download asp .net tutorial for beginners pdf asp.net tutorial asp.net 2010 tutorial for beginners asp net tutorial for beginners with examples ajax tutorial for beginners in asp net asp net tutorial for beginners youtube jquery in asp net tutorial for beginners Beginners Learn .NET and c# Csharp Lab 1 Day 1- published: 08 Dec 2013
- views: 444
15:43
Create a website with ASP.Net - Part 2 Connecting to a database
Download Source code: https://www.dropbox.com/s/ezhfpqavjru8k80/ASP%202.zip Download Start...
published: 13 Oct 2012
author: Michiel Wouters
Create a website with ASP.Net - Part 2 Connecting to a database
Create a website with ASP.Net - Part 2 Connecting to a database
Download Source code: https://www.dropbox.com/s/ezhfpqavjru8k80/ASP%202.zip Download Starter pack: https://www.dropbox.com/s/umbzovkd966xjfs/StarterPack.zip.- published: 13 Oct 2012
- views: 21042
- author: Michiel Wouters
12:53
Programar con Asp.Net Parte 1
Asp.Net, Video tutorial para el desarrollo de una aplicación en ASP.NET, basada en una arq...
published: 27 Aug 2012
author: Guillermo Jose Gonzalez Carrillo
Programar con Asp.Net Parte 1
Programar con Asp.Net Parte 1
Asp.Net, Video tutorial para el desarrollo de una aplicación en ASP.NET, basada en una arquitectura de capas: Capa de acceso a datos (DAL-Data Access Layer) ...- published: 27 Aug 2012
- views: 3913
- author: Guillermo Jose Gonzalez Carrillo