Cursos técnicos gratuitos en línea

Size: px
Start display at page:

Download "Cursos técnicos gratuitos en línea"

Transcription

1 Microsoft Virtual Academy Cursos técnicos gratuitos en línea Tome un curso gratuito en línea.

2 Microsoft Virtual Academy Aprendiendo a Programar

3 Validando

4 Validando

5 Validación en el servidor

6 Validación en el servidor - Modelo using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace MvcSimpleModelBinding.Models public class Person public int Id get; set; public string Name get; set; public int Age get; set; public string Street get; set; public string City get; set; public string State get; set; public int Zipcode get; set;

7 Validación en el servidor - Controller public class PersonController : Controller static List<Person> people = new List<Person>(); public ActionResult Index() return View(people); public ActionResult Details(Person person) return View(person);... public ActionResult Create() return View(); [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(Person person) if (!ModelState.IsValid) return View("Create", person); people.add(person); return RedirectToAction("Index");

8 Validación en el servidor Vista ViewBag.Title = "Index"; <h2>listado</h2> <table> <tr> <th></th> <th>id</th> <th>nombre</th> (Person person in Model) <tr> <td>@html.actionlink("ver Detalle", "Details", person)</td> <td>@html.encode(person.id)</td> <td>@html.encode(person.name)</td> </tr> </table> <p>@html.actionlink("crear Nueva Persona", "Create")</p>

9 Validación en el servidor Vista ViewBag.Title = "Create"; <fieldset> <legend>campos</legend> <p><label "*") </p> <p><label "*") </p> <p><label "*") </p> <p><label "*") </p> <p><label "*") </p> <p><label "*") </p> <p><label "*") </p> <p><input type="submit" value="create" /> </p> </fieldset> <div>@html.actionlink("volver al Listado", "Index")</div>

10 Validación en el servidor Vista ViewBag.Title = "Details"; <h2>detalle</h2> <fieldset> <legend>campos</legend> </p> </p> </p> </p> </p> </p> <p>c. </p> </fieldset> <p>@html.actionlink("volver al Listado", "Index") </p> Mas información y tutoriales en: introduction/getting-started

11 Validación en el servidor - Contras

12 Validación en el cliente - JavaScript function validateform() var x=document.forms["myform"]["fname"].value; if (x==null x=="") alert("first name must be filled out"); return false; return validateform()

13 Validación en el cliente - JavaScript

14 Validación en el cliente

15 Enviando correos

16 Enviando correos - Modelo public class CorreoModel public string From get; set; public string To get; set; public string Subject get; set; public string Body get; set; Luego en la carpeta Controller crearemos un nuevo controlador llamado EnviarCorreoController

17 Enviando correos - Controlador using System; using System.Collections.Generic; using System.Linq; using System.Net.Mail; using System.Web; using System.Web.Mvc; namespace EnviarCorreo.Controllers public class EnviarCorreoController : Controller // // GET: /EnviarCorreo/ public ActionResult Index() return View(); [HttpPost] public ActionResult Index(EnviarCorreo.Models.CorreoModel _objmodelmail) if (ModelState.IsValid) MailMessage mail = new MailMessage(); mail.to.add(_objmodelmail.to); mail.from = new MailAddress(_objModelMail.From); mail.subject = _objmodelmail.subject; string Body = _objmodelmail.body;

18 Enviando correos - Controlador mail.body = Body; mail.isbodyhtml = true; SmtpClient smtp = new SmtpClient(); smtp.host = "smtp.outlook.com"; smtp.port = 587; smtp.usedefaultcredentials = false; smtp.credentials = new System.Net.NetworkCredential ("username", "password");// Enter seders User name and password smtp.enablessl = true; smtp.send(mail); return View("Index", _objmodelmail); else return View(); Y finalmente, en la carpeta de vistas, tendremos Index.cshtml

19 Enviando correos - ViewBag.Title = "Index"; <h2>index</h2> <fieldset> <legend>send <p>from: </p> <p>@html.textboxfor(m=>m.from)</p> <p>to: </p> <p>@html.textboxfor(m=>m.to)</p> <p>subject: </p> <p>@html.textboxfor(m=>m.subject)</p> <p>body: </p> <p>@html.textareafor(m=>m.body)</p> <input type ="submit" value ="Send" /> </fieldset>

20 Explicando nuestro ejemplo En el controlador tenemos un código que dice: ViewResult Index (EnviarCorreo.Models.CorreoModel _objmodelmail) En este método, tenemos un dato que tiene la forma de nuestro CorreoModel. Luego creamos un dato MailMessage y le completamos toda la información que necesita: To From Cc Bcc Subject Body

21 Explicando nuestro ejemplo

22 Interfaces avanzadas

23 Interfaces avanzadas

24 Interfaces avanzadas

25 Persistiendo

26 Persistiendo

27 Persistiendo

28 2016 Microsoft Corporation. All rights reserved. The text in this document is available under the Creative Commons Attribution 3.0 License, additional terms may apply. All other content contained in this document (including, without limitation, trademarks, logos, images, etc.) are not included within the Creative Commons license grant. This document does not provide you with any legal rights to any intellectual property in any Microsoft product. You may copy and use this document for your internal, reference purposes. This document is provided "as-is." Information and views expressed in this document, including URL and other Internet Web site references, may change without notice. You bear the risk of using it. Some examples are for illustration only and are fictitious. No real association is intended or inferred. Microsoft makes no warranties, express or implied, with respect to the information provided here.

COOKBOOK Sending an in Response to Actions

COOKBOOK Sending an  in Response to Actions 2011 COOKBOOK Sending an Email in Response to Actions Send an Email Let s expand the capabilities of the context menu in Customers grid view. We will add a new option, seen below, which will execute a

More information

LAMPIRAN. 1. Source Code Data Buku. using System; using System.Collections.Generic; using System.Data; using System.Data.Entity; using System.

LAMPIRAN. 1. Source Code Data Buku. using System; using System.Collections.Generic; using System.Data; using System.Data.Entity; using System. 81 LAMPIRAN 1. Source Code Data Buku using System; using System.Collections.Generic; using System.Data; using System.Data.Entity; using System.Linq; using System.Net; using System.Web; using System.Web.Mvc;

More information

Description: This feature will enable user to send messages from website to phone number.

Description: This feature will enable user to send messages from website to phone number. Web to Phone text message Description: This feature will enable user to send messages from website to phone number. User will use this feature and can send messages from website to phone number, this will

More information

MVC :: Understanding Views, View Data, and HTML Helpers

MVC :: Understanding Views, View Data, and HTML Helpers MVC :: Understanding Views, View Data, and HTML Helpers The purpose of this tutorial is to provide you with a brief introduction to ASP.NET MVC views, view data, and HTML Helpers. By the end of this tutorial,

More information

FatModel Quick Start Guide

FatModel Quick Start Guide FatModel Quick Start Guide Best Practices Framework for ASP.Net MVC By Loma Consulting February 5, 2016 Table of Contents 1. What is FatModel... 3 2. Prerequisites... 4 Visual Studio and Frameworks...

More information

Justin Jones 21 st February 2013 Version 1.1 Setting up an MVC4 Multi-Tenant Site

Justin Jones 21 st February 2013 Version 1.1 Setting up an MVC4 Multi-Tenant Site Setting up an MVC4 Multi-Tenant Site Contents Introduction... 2 Prerequisites... 2 Requirements Overview... 3 Design Structure (High Level)... 4 Setting Up... 5 Dynamic Layout Pages... 15 Custom Attribute

More information

MICRO SERVICES ARCHITECTURE

MICRO SERVICES ARCHITECTURE Hola! MICRO SERVICES ARCHITECTURE South Sound Developers User Group Olympia, Washington March 13, 2015 bool haslocalaccount = OAuthWebSecurity.HasLocalAccount(WebSecurity.GetUserId(User.Identity.Name));

More information

Developing and deploying MVC4/HTML5 SDK application to IIS DigitalOfficePro Inc.

Developing and deploying MVC4/HTML5 SDK application to IIS DigitalOfficePro Inc. Developing and deploying MVC4/HTML5 SDK application to IIS DigitalOfficePro Inc. -------------------------------------------------------------------------------------------------------------------------------------

More information

Babu Madhav Institute of information technology 2016

Babu Madhav Institute of information technology 2016 Course Code: 060010602 Course Name: Web Development using ASP.NET MVC Unit 1 Short Questions 1. What is an ASP.NET MVC? 2. Write use of FilterConfiguration.cs file. 3. Define: 1) Model 2) View 3) Controller

More information

Lampiran. SetoransController

Lampiran. SetoransController 67 Lampiran SetoransController using System; using System.Collections.Generic; using System.Data; using System.Data.Entity; using System.Linq; using System.Net; using System.Web; using System.Web.Mvc;

More information

Single user Installation. Revisión: 13/10/2014

Single user Installation. Revisión: 13/10/2014 Revisión: 13/10/2014 I Contenido Parte I Introduction 1 Parte II Create Repositorio 3 1 Create... 3 Parte III Installation & Configuration 1 Installation 5... 5 2 Configuration... 9 3 Config. Modo... 11

More information

SportsStore: Administration

SportsStore: Administration C H A P T E R 11 SportsStore: Administration In this chapter, I continue to build the SportsStore application in order to give the site administrator a way of managing orders and products. Managing Orders

More information

20 Recipes for Programming MVC 3

20 Recipes for Programming MVC 3 20 Recipes for Programming MVC 3 Jamie Munro Beijing Cambridge Farnham Köln Sebastopol Tokyo 20 Recipes for Programming MVC 3 by Jamie Munro Copyright 2011 Jamie Munro. All rights reserved. Printed in

More information

Users Browser JQuery Ajax Plan My Night Application ASP.NET MVC 2.0 View Model Controller MEF Addin Model Business Logic Windows Server App Fabric (formerly codename Velocity) Model SQL Server 2008 Plan

More information

Documentación GT_Complemento_Exportaciones xsd Factura Electrónica en Línea

Documentación GT_Complemento_Exportaciones xsd Factura Electrónica en Línea Documentación GT_Complemento_Exportaciones- 0.1.0.xsd Factura Electrónica en Línea Versión 1 Introducción Este documento describe todos los aspectos del esquema xsd en la que estará basado el nuevo Modelo

More information

Developing Applications with Java Persistence API (JPA)

Developing Applications with Java Persistence API (JPA) Developing Applications with Java Persistence API (JPA) Duración: 2 Días Código del Curso: WD160G Método de Impartición: e-learning (Self-Study) Temario: This 2-day instructor-led course teaches you how

More information

MVC :: Preventing JavaScript Injection Attacks. What is a JavaScript Injection Attack?

MVC :: Preventing JavaScript Injection Attacks. What is a JavaScript Injection Attack? MVC :: Preventing JavaScript Injection Attacks The goal of this tutorial is to explain how you can prevent JavaScript injection attacks in your ASP.NET MVC applications. This tutorial discusses two approaches

More information

SAP EDUCACION. New SAP Professional: N-SAP. A Training Initiative of the SAP. April External

SAP EDUCACION. New SAP Professional: N-SAP. A Training Initiative of the SAP. April External SAP EDUCACION New SAP Professional: N-SAP A Training Initiative of the SAP April 2017 External ADAPTARSE AL CAMBIO 2017 SAP SE or an SAP affiliate company. All rights reserved. Public 2 2017 SAP SE or

More information

WINDOWS SERVER - SERVICIOS AVANZADOS

WINDOWS SERVER - SERVICIOS AVANZADOS IMECAF México, S.C. Instituto Mexicano de Contabilidad, Administración y Finanzas Nombre del Curso WINDOWS SERVER - SERVICIOS AVANZADOS Objetivo El curso de Windows Server Pro: Advanced Services es el

More information

Introducing Models. Data model: represent classes that iteract with a database. Data models are set of

Introducing Models. Data model: represent classes that iteract with a database. Data models are set of Models 1 Objectives Define and describe models Explain how to create a model Describe how to pass model data from controllers to view Explain how to create strongly typed models Explain the role of the

More information

Latest Press Release. Spotify: free coupon codes

Latest Press Release. Spotify: free coupon codes corp@stantec.com Latest Press Release Spotify: free coupon codes S User manual guide for Tracfone Alcatel A460G Pixi Pulsar has the whole information regarding the phone that will lead you to understand

More information

Caso de Estudio: Parte II. Diseño e implementación de. Integración de Sistemas. aplicaciones Web con.net

Caso de Estudio: Parte II. Diseño e implementación de. Integración de Sistemas. aplicaciones Web con.net Caso de Estudio: Diseño e Implementación de la Capa Web de MiniBank Integración de Sistemas Parte II Diseño e implementación de Parte II. Diseño e implementación de aplicaciones Web con.net Introducción

More information

Using Visual Studio 2017

Using Visual Studio 2017 C H A P T E R 1 Using Visual Studio 2017 In this chapter, I explain the process for installing Visual Studio 2017 and recreate the Party Invites project from Chapter 2 of Pro ASP.NET Core MVC. As you will

More information

ASP.NET MVC Music Store Tutorial

ASP.NET MVC Music Store Tutorial ASP.NET MVC Music Store Tutorial Version 0.8 Jon Galloway - Microsoft 4/28/2010 http://mvcmusicstore.codeplex.com - Licensed under Creative Commons Attribution 3.0 License. ASP.NET MVC Music Store Tutorial

More information

Important Change to the Year End W2 Process

Important Change to the Year End W2 Process Important Change to the Year End W2 Process This year you will be able to receive your W-2 electronically, download W-2 data to third party tax filing software, and request a copy of your W-2 tax statement.

More information

Forma't a l'escola del Gremi d'instal ladors de Barcelona

Forma't a l'escola del Gremi d'instal ladors de Barcelona CURSO DE MEMORIAS TÉCNICAS DE DISEÑO Código: MN36 Objetivo : En este curso, se pretende conseguir que el alumno, sepa elaborar en toda su amplitud, el diseño de una instalación eléctrica desde el punto

More information

Blackbird Books and Supplies

Blackbird Books and Supplies Blackbird Books and Supplies Final Documentation Team Blackbird Mike Pratt Ridha Joudah Jayati Dandriyal Joseph Manga 1 Contents Site Hierarchy... 3 Home (Default Page)... 4 About... 6 Contact... 8 Login...

More information

MICROSOFT Course 20411: Administering Windows Server 2012

MICROSOFT Course 20411: Administering Windows Server 2012 MICROSOFT Course 20411: Administering Windows Server 2012 1 INTRODUCCIÓN El curso 20411 se basa en la versión final de Windows Server 2012. La formación aporta al alumno conocimientos sobre las tareas

More information

Diseño de la capa de datos para el POS

Diseño de la capa de datos para el POS escuela técnica superior de ingeniería informática Diseño de la capa de datos para el POS Departamento de Lenguajes y Sistemas Informáticos Ingeniería del Software de Gestión III Índice Introducción Estrategias

More information

AvePoint Office Connect Online Manager 1.0

AvePoint Office Connect Online Manager 1.0 AvePoint Office Connect Online Manager 1.0 Administration Guide Issued August 2017 1 Table of Contents Introduction...3 Submitting Documentation Feedback to AvePoint...4 Required Permissions...5 Brower

More information

Create Faculty Membership Account. This step-by-step guide takes you through the process to create a Faculty Membership Account.

Create Faculty Membership Account. This step-by-step guide takes you through the process to create a Faculty Membership Account. Create Faculty Membership Account This step-by-step guide takes you through the process to create a Faculty Membership Account. Before you start Have you checked the Oracle Academy New Membership Reference

More information

Enterprise Systems & Frameworks

Enterprise Systems & Frameworks Enterprise Systems & Frameworks CS25010 - Web Programming Connor Goddard 5 th November 2015 Aberystwyth University 1 INTRODUCTION In today s session, we will aim to cover the following: Multi-tier Architectural

More information

Annex B: Prototype Draft Model Code. April 30 th, 2015 Siamak Khaledi, Ankit Shah, Matthew Shoaf

Annex B: Prototype Draft Model Code. April 30 th, 2015 Siamak Khaledi, Ankit Shah, Matthew Shoaf Annex B: Prototype Draft Model Code April 30 th, 2015 Siamak Khaledi, Ankit Shah, Matthew Shoaf 1. Code Set: Prototype FTLADS Draft Model 1.1. Notes on Building the Wheel Draft Algorithm Based on the data

More information

WorkPlace Agent Service

WorkPlace Agent Service WorkPlace Agent Service Installation and User Guide WorkPlace 16.00.00.00 + Paramount Technologies Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com

More information

HangFire Documentation

HangFire Documentation HangFire Documentation Release 0.8 Sergey Odinokov June 21, 2014 Contents 1 Contents 3 1.1 Project pages............................................... 3 1.2 Quick start................................................

More information

MVC :: Understanding Models, Views, and Controllers

MVC :: Understanding Models, Views, and Controllers MVC :: Understanding Models, Views, and Controllers This tutorial provides you with a high-level overview of ASP.NET MVC models, views, and controllers. In other words, it explains the M, V, and C in ASP.NET

More information

INTOSAI EXPERTS DATABASE

INTOSAI EXPERTS DATABASE INTOSAI EXPERTS DATABASE User s Manual Version 1.0 Profile: Registrator MU.0001.INTOSAI USER S MANUAL REGISTRATOR PROFILE Experts Database System Author: Daniel Balvis Creation date: May 12th 2015 Last

More information

Collaborate with Your Care Teams

Collaborate with Your Care Teams Collaborate with Your Care Teams Table of Contents Use Office to increase care team productivity and efficiency. With Lync, OneDrive for Business, and SharePoint, your teams can spend less time on administrative

More information

IBM InfoSphere MDM Reference Data Management V10

IBM InfoSphere MDM Reference Data Management V10 IBM InfoSphere MDM Reference Data Management V10 Duración: 3 Días Código del Curso: ZZ670G Método de Impartición: Curso Virtual & Classroom (V&C Select) Temario: This is the Classroom version of Instructor-led

More information

Installation guide. WebChick. Installation guide for use on local PC

Installation guide. WebChick. Installation guide for use on local PC WebChick Installation guide for use on local PC Version 1.0 Agrologic Ltd. Author: Valery M. Published: March 2011 1 Table of Contents Copyright Information... 3 Abstract... 4 Overview:... 4 System Requirements

More information

Manual De Adobe Photoshop Cs3 En Espanol File Type

Manual De Adobe Photoshop Cs3 En Espanol File Type We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with manual de adobe photoshop

More information

ANX-PR/CL/ LEARNING GUIDE

ANX-PR/CL/ LEARNING GUIDE PR/CL/001 SUBJECT 103000693 - DEGREE PROGRAMME 10AQ - ACADEMIC YEAR & SEMESTER 2018/19 - Semester 1 Index Learning guide 1. Description...1 2. Faculty...1 3. Prior knowledge recommended to take the subject...2

More information

ASP.NET MVC 3 Using C# Rev. 3.0

ASP.NET MVC 3 Using C# Rev. 3.0 ASP.NET MVC 3 Using C# Rev. 3.0 Student Guide Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious unless otherwise noted.

More information

Live Help On Demand Analytics

Live Help On Demand Analytics Oracle Live Help On Demand Analytics Administrator s Guide µ Live Help On Demand Analytics Version 2013-04 Administrator s Guide Oracle ATG One Main Street Cambridge, MA 02142 USA Contents i µ Oracle Live

More information

Network Online Services How to Register Guide

Network Online Services How to Register Guide Network Online Services How to Register Guide June 2016 How to Register... 2 Subscription... 5 Update My Profile... 7 Update Registration Details... 7 Contact Details / Postal Address... 15 How To Register

More information

EVALUATION COPY. Unauthorized reproduction or distribution is prohibitied ASP.NET MVC USING C#

EVALUATION COPY. Unauthorized reproduction or distribution is prohibitied ASP.NET MVC USING C# ASP.NET MVC USING C# ASP.NET MVC Using C# Rev. 4.8 Student Guide Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious unless

More information

One Port Router. Installation Guide. It s about Quality of life

One Port Router. Installation Guide. It s about Quality of life One Port Router Installation Guide It s about Quality of life 2 This guide details the start up process for your internet connection. You will be able to enjoy the service in an easy, simple, and quick

More information

RMH RESOURCE EDITOR USER GUIDE

RMH RESOURCE EDITOR USER GUIDE RMH RESOURCE EDITOR USER GUIDE Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2017, Retail Management Hero. All Rights Reserved. RMHDOCRESOURCE071317 Disclaimer Information

More information

Action-packed controllers

Action-packed controllers Action-packed controllers This chapter covers What makes a controller What belongs in a controller Manually mapping view models Validating user input Using the default unit test project In the last couple

More information

Visual C# 2012 How to Program by Pe ars on Ed uc ati on, Inc. All Ri ght s Re ser ve d.

Visual C# 2012 How to Program by Pe ars on Ed uc ati on, Inc. All Ri ght s Re ser ve d. Visual C# 2012 How to Program 1 99 2-20 14 by Pe ars on Ed uc ati on, Inc. All Ri ght s Re ser ve d. 1992-2014 by Pearson Education, Inc. All 1992-2014 by Pearson Education, Inc. All Although commonly

More information

Configuración del laboratorio de acceso telefónico de clientes (San José, Estados Unidos)

Configuración del laboratorio de acceso telefónico de clientes (San José, Estados Unidos) Configuración del laboratorio de acceso telefónico de clientes (San José, Estados Unidos) Contenido Introducción prerrequisitos Requisitos Componentes Utilizados Convenciones Configuración Información

More information

ECOPETROL BARRANCABERJEJA. INTERFACES AL SERVIDOR PI:

ECOPETROL BARRANCABERJEJA. INTERFACES AL SERVIDOR PI: ECOPETROL BARRANCABERJEJA. INTERFACES AL SERVIDOR PI: Este documento fue creado para apoyar la instalación de la(s) estación(es) que contiene(n) la(s) interface(s) al sistema PI de ECOPETROL-Barrancabermeja.

More information

INTRO TO ASP.NET MVC JAY HARRIS.NET DEVELOPER

INTRO TO ASP.NET MVC JAY HARRIS.NET DEVELOPER INTRO TO JAY HARRIS.NET DEVELOPER WHAT IS MVC? It is a powerful and elegant means of separating concerns There is no universally unique MVC pattern. MVC is a concept rather than a solid programming framework.

More information

Service Desk Mobile App 1.0 Mobile App Quick Start. March 2018

Service Desk Mobile App 1.0 Mobile App Quick Start. March 2018 Service Desk Mobile App 1.0 Mobile App Quick Start March 2018 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government

More information

IN ACTION. Jeffrey Palermo Jimmy Bogard Eric Hexter Matthew Hinze Jeremy Skinner. Phil Haack. Third edition of ASP.NET MVC in Action FOREWORD BY

IN ACTION. Jeffrey Palermo Jimmy Bogard Eric Hexter Matthew Hinze Jeremy Skinner. Phil Haack. Third edition of ASP.NET MVC in Action FOREWORD BY Third edition of ASP.NET MVC in Action IN ACTION Jeffrey Palermo Jimmy Bogard Eric Hexter Matthew Hinze Jeremy Skinner FOREWORD BY Phil Haack MANNING 6$03/(&+$37(5 ASP.NET MVC 4 in Action Jeffrey Paleermo,

More information

Create Individual Membership. This step-by-step guide takes you through the process to create an Individual Membership.

Create Individual Membership. This step-by-step guide takes you through the process to create an Individual Membership. Create Individual Membership This step-by-step guide takes you through the process to create an Individual Membership. Before you start Have you checked the Oracle Academy New Membership Reference Guide

More information

Custom Location Extension

Custom Location Extension Custom Location Extension User Guide Version 1.4.9 Custom Location Extension User Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Custom Location

More information

Filr 3.3 Using Micro Focus Filr with Microsoft Office and Outlook Applications. December 2017

Filr 3.3 Using Micro Focus Filr with Microsoft Office and Outlook Applications. December 2017 Filr 3.3 Using Micro Focus Filr with Microsoft Office and Outlook Applications December 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use

More information

SharePoint SQL 2016 qué hay de nuevo?

SharePoint SQL 2016 qué hay de nuevo? #SQLSatMexCity Bienvenidos!!! SharePoint 2016 + SQL 2016 qué hay de nuevo? Vladimir Medina Community Leader SPSEVENTS.ORG @VladPoint vladimir_mg@hotmail.com http://blogs.technet.com/b/vladpoint https://www.facebook.com/groups/56850858767/

More information

DOWNLOAD OR READ : WINAMP USER MANUAL FULL PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : WINAMP USER MANUAL FULL PDF EBOOK EPUB MOBI DOWNLOAD OR READ : WINAMP USER MANUAL FULL PDF EBOOK EPUB MOBI Page 1 Page 2 winamp user manual full winamp user manual full pdf winamp user manual full View and Download Dell S520 user manual online.

More information

RIG 600LX QUICK START GUIDE. plantronics.com/setup/rig-600lx. plantronics.com/support GUIDE DE DÉMARRAGE RAPIDE

RIG 600LX QUICK START GUIDE. plantronics.com/setup/rig-600lx. plantronics.com/support GUIDE DE DÉMARRAGE RAPIDE ! plantronics.com/setup/rig-600lx plantronics.com/support RIG 600LX EEE Yönetmeliğine Uygundur 2017 Plantronics, Inc. Plantronics and RIG are trademarks of Plantronics, Inc., registered in the US and other

More information

reinsight Mobile Quick Start Guide

reinsight Mobile Quick Start Guide reinsight Mobile Quick Start Guide Overview The purpose of this document is to provide an overview of the features in reinsight Mobile. This document will review the process to access reinsight Mobile,

More information

CONFIGURING SSO FOR FILENET P8 DOCUMENTS

CONFIGURING SSO FOR FILENET P8 DOCUMENTS CONFIGURING SSO FOR FILENET P8 DOCUMENTS Overview Configuring IBM Content Analytics with Enterprise Search (ICA) to support single sign-on (SSO) authentication for secure search of IBM FileNet P8 (P8)

More information

Tutorials Php Y Jquery Mysql Database Without Refreshing Code

Tutorials Php Y Jquery Mysql Database Without Refreshing Code Tutorials Php Y Jquery Mysql Database Without Refreshing Code Code for Pagination using Php and JQuery. This code for pagination in PHP and MySql gets. Tutorial focused on Programming, Jquery, Ajax, PHP,

More information

Module 4 Microsoft Azure Messaging Services

Module 4 Microsoft Azure Messaging Services Module 4 Microsoft Azure Messaging Services Service Bus Azure Service Bus is a generic, cloud-based messaging system for connecting just about anything applications, services and devices wherever they

More information

PSEUDOCODE. It is a conventional code to represent an algorithm

PSEUDOCODE. It is a conventional code to represent an algorithm PSEUDOCODE It is a conventional code to represent an algorithm PSEUDOCODE It is a conventional code to represent an algorithm PSEUDOCODE NOTATION Refers the syntax used to write an algorithm in pseudocode

More information

IBM Security QRadar Version Customizing the Right-Click Menu Technical Note

IBM Security QRadar Version Customizing the Right-Click Menu Technical Note IBM Security QRadar Version 7.2.0 Technical Note Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page 3. Copyright IBM Corp. 2012,

More information

Intel Platform Administration Technology Quick Start Guide

Intel Platform Administration Technology Quick Start Guide Intel Platform Administration Technology Quick Start Guide 320014-003US This document explains how to get started with core features of Intel Platform Administration Technology (Intel PAT). After reading

More information

Customer Online Support Demonstration. 1

Customer Online Support Demonstration.  1 Customer Online Support Demonstration 1 Introduction SATHYA is committed to simplifying and improving your support experience. As we launch our enhanced online case management capabilities, you will see

More information

Monetra. POST Protocol Specification

Monetra. POST Protocol Specification Monetra POST Protocol Specification Programmer's Addendum v1.0 Updated November 2012 Copyright Main Street Softworks, Inc. The information contained herein is provided As Is without warranty of any kind,

More information

Sesión 2: PL 1b: Gestión de sistemas en tiempo real para prototipado rápido de controladores (MathWorks).

Sesión 2: PL 1b: Gestión de sistemas en tiempo real para prototipado rápido de controladores (MathWorks). Sesión 2: PL 1b: Gestión de sistemas en tiempo real para prototipado rápido de controladores (MathWorks). 1 Objetivo... 3 Hardware description... 3 Software Setup... 3 Setting an Initial Working Folder...

More information

Upgrading to Watson Explorer Version or IBM

Upgrading to Watson Explorer Version or IBM Upgrading to Watson Explorer Version 8.2-7 or 9.0.0.9 IBM ii Upgrading to Watson Explorer Version 8.2-7, 9.0.0.9 Contents Chapter 1. Upgrading to Watson Explorer Version 8.2-7 or 9.0.0.9........ 1 Upgrading

More information

Bazaarvoice hosted authentication reference and implementation guide

Bazaarvoice hosted authentication reference and implementation guide Bazaarvoice hosted authentication reference and implementation guide Disclaimer Copyright 2012 Bazaarvoice. All rights reserved. The information in this document: Is confidential and intended for Bazaarvoice

More information

Once an account is created, a vendor can also update contact information, view orders, and submit electronic invoices.

Once an account is created, a vendor can also update contact information, view orders, and submit electronic invoices. This guide covers the following topics: Creating a New VSS Account o If Your Vendor Account is Already Registered o If Your Vendor Account Has Not Been Registered o If Your Vendor Account Has Not Been

More information

LexisNexis C.L.U.E. Auto Fixed Length Input File Mapping Insurance Solutions Portal

LexisNexis C.L.U.E. Auto Fixed Length Input File Mapping Insurance Solutions Portal LexisNexis C.L.U.E. Auto Fixed Length Input File Mapping Insurance Solutions Portal May 2014 Copyright 2014 LexisNexis. All rights reserved. 1 LexisNexis C.L.U.E. Auto Fixed Length Input File Mapping Insurance

More information

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017 Oracle Hospitality OPERA Exchange Interface Cloud Authentication October 2017 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

User guide. Bloomberg Legal Entity Identifier (LEI) web platform

User guide. Bloomberg Legal Entity Identifier (LEI) web platform User guide Bloomberg Legal Entity Identifier (LEI) web platform Access the platform 1. Go to : https://lei.bloomberg.com 2. Click on Account and then on Signup 2 Create your account 3. Fill-in the requested

More information

Upgrading to Watson Explorer Version 8.2-5, , or IBM

Upgrading to Watson Explorer Version 8.2-5, , or IBM Upgrading to Watson Explorer Version 8.2-5, 9.0.0.7, or 10.0.0.3 IBM ii Upgrading to Watson Explorer Version 8.2-5, 9.0.0.7, or 10.0.0.3 Contents Chapter 1. Upgrading to Watson Explorer Version 8.2-5,

More information

This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information.

This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information. This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information. You can also include details, such as search keywords,

More information

How to Register your Application Online

How to Register your Application Online How to Register your Application Online 2019-2020 LANGUAGE AND CULTURE ASSISTANTS IN SPAIN Application period: January, 10 th - April, 10th Contents 1. Access PROFEX...3 2. Create a new account in PROFEX...4

More information

E-BOOK # EPSON STYLUS SX440W SCANNER MAC EBOOK

E-BOOK # EPSON STYLUS SX440W SCANNER MAC EBOOK 12 November, 2017 E-BOOK # EPSON STYLUS SX440W SCANNER MAC EBOOK Document Filetype: PDF 403.74 KB 0 E-BOOK # EPSON STYLUS SX440W SCANNER MAC EBOOK Mac OS X: Double-click the EPSON File Manager for X. Connect

More information

AvePoint PTO Manager

AvePoint PTO Manager 1.1.1.0 Quick Start Guide Issued March 2017 1 Table of Contents What s New in this Guide...3 Overview...4 Installing...5 Accessing the Home Page...6 Mapping Job Titles...7 Creating PTO Policies...8 Applying

More information

Working with Controllers

Working with Controllers Controller 1 Objectives 2 Define and describe controllers Describe how to work with action methods Explain how to invoke action methods Explain routing requests Describe URL patterns Working with Controllers

More information

5 Years Integrated M.Sc. (IT) 6th Semester Web Development using ASP.NET MVC Practical List 2016

5 Years Integrated M.Sc. (IT) 6th Semester Web Development using ASP.NET MVC Practical List 2016 Practical No: 1 Enrollment No: Name: Practical Problem (a) Create MVC 4 application which takes value from browser URL. Application should display following output based on input no : Ex. No = 1234 o/p

More information

CIBC Government Payment and Filing Service Reference Guide

CIBC Government Payment and Filing Service Reference Guide CIBC Government Payment and Filing Service Reference Guide Cash Management Products December 2016 CIBC Cube Design is a trademark of CIBC. Table of Contents 1.0 Getting Started... 2 1.1. Enrolment... 2

More information

Create Extensions App inventor 2 Build Extensions App Inventor, easy tutorial - Juan Antonio Villalpando

Create Extensions App inventor 2 Build Extensions App Inventor, easy tutorial - Juan Antonio Villalpando 1 von 11 09.01.2019, 10:12 Inicio FOROS Elastix - VoIP B4A (Basic4Android) App inventor 2 PHP - MySQL Estación meteorológica B4J (Basic4Java) ADB Shell - Android Arduino AutoIt (Programación) Visual Basic

More information

OpenManage Management Pack for vrealize Operations Manager Version 1.0 Installation Guide

OpenManage Management Pack for vrealize Operations Manager Version 1.0 Installation Guide OpenManage Management Pack for vrealize Operations Manager Version 1.0 Installation Guide Notas, precauciones y avisos NOTA: Una NOTA indica información importante que le ayuda a hacer un mejor uso de

More information

ford residence southampton, ny Msn hotmail

ford residence southampton, ny Msn hotmail P ford residence southampton, ny Msn hotmail Você está cansado de procurar na internet como criar msn hotmail? Neste post, vamos ensinar pra você, o quanto é fácil criar um msn no hotmail, passo a passo,.

More information

Guidelines. Table of Contents. Welcome Letter

Guidelines. Table of Contents. Welcome Letter Guidelines Table of Contents Welcome Letter Expectations Student Expectations: Elementary Students Student Expectations: Middle School Students Student Expectations: High School Students Appendix YouTube

More information

Authentication Service Api Help Guide

Authentication Service Api Help Guide Authentication Service Api Help Guide CionSystems Inc. 6640 185 th Ave NE Redmond, WA-98052, USA http://www.cionsystems.com Phone: +1.425.605.5325 Trademarks CionSystems, CionSystems Inc., the CionSystems

More information

Stay on Top of Your Day

Stay on Top of Your Day Stay on Top of Your Day Table of Contents Use OneNote to get organized and stay that way. With OneNote, you can keep a persistent record of all your notes, in all formats, across devices. 03 04 07 10 Why

More information

Configuring Microsoft Windows Shared

Configuring Microsoft Windows Shared Application Notes Mar. 2018 Configuring Microsoft Windows Shared Folder Permissions in QES 2018 QNAP Systems, Inc. All Rights Reserved. 1 Notices This user manual provides detailed instructions of using

More information

ABAP BREVE MANUAL EBOOK

ABAP BREVE MANUAL EBOOK 09 November, 2017 ABAP BREVE MANUAL EBOOK Document Filetype: PDF 192.31 KB 0 ABAP BREVE MANUAL EBOOK A veces me piden, si conozco CURSOS GRATUITOS de SAP en castellano. Por lo que se, ABAP est muy unido

More information

AT&T Internet Reservations System (IRES) for IBM

AT&T Internet Reservations System (IRES) for IBM IBM Version 1 AT&T Internet Reservations System (IRES) for IBM User Guide 2010 AT&T Intellectual Property. All rights reserved. AT&T and the AT&T logo are trademarks of AT&T Intellectual Property. Contents

More information

Government Payment and Filing Service. Commercial Banking and Large Corporate Clients. Reference. Guide

Government Payment and Filing Service. Commercial Banking and Large Corporate Clients. Reference. Guide Government Payment and Filing Service Commercial Banking and Large Corporate Clients Reference Guide CIBC GICs, Deposits and Payments Table of Contents Section Topic Page(s) 1.0 Getting Started 1.1 Enrollment

More information

For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to

For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to access them. Contents at a Glance About the Author...

More information

Mobile On the Go (OTG) Server

Mobile On the Go (OTG) Server Mobile On the Go (OTG) Server Installation Guide Paramount Technologies, Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com Copyright

More information

Best practices. Starting and stopping IBM Platform Symphony Developer Edition on a two-host Microsoft Windows cluster. IBM Platform Symphony

Best practices. Starting and stopping IBM Platform Symphony Developer Edition on a two-host Microsoft Windows cluster. IBM Platform Symphony IBM Platform Symphony Best practices Starting and stopping IBM Platform Symphony Developer Edition on a two-host Microsoft Windows cluster AjithShanmuganathan IBM Systems & Technology Group, Software Defined

More information

Award and Key Contact Information. * = required field. *AWARD CATEGORY Please select the award category you are entering (select one only): (01) Books

Award and Key Contact Information. * = required field. *AWARD CATEGORY Please select the award category you are entering (select one only): (01) Books Award and Key Contact Information * = required field *AWARD CATEGORY Please select the award category you are entering (select one only): (01) Books https://americanbar.qualtrics.com/controlpanel/ajax.php?action=getsurveyprintpreview&t=2rtcxdsar2xoe15a4xxuwe

More information

How to Register your Application Online

How to Register your Application Online 2018-2019 School Year How to Register your Application Online NORTH AMERICAN LANGUAGE AND CULTURE ASSISTANTS IN SPAIN UPDATED 12/25/2017 1 2018-2019 Profex Manual Contents 1. Access PROFEX... 3 2. Create

More information