ASP. NET. programación avanzada. Interfaz de Usuario

Size: px
Start display at page:

Download "ASP. NET. programación avanzada. Interfaz de Usuario"

Transcription

1 ASP. NET. programación avanzada Interfaz de Usuario

2 Interfaz de Usuario Unificar formato. Imagen corporativa Campus Virtual Aplicación independiente Web No preocuparnos del formato Gestión global del aspecto Idioma automático Diferentes dispositivos

3 Campus Virtual

4 Aplicación independiente

5 Web (Vualà)

6 1. Crear carpeta virtual Solicitud: /nombreaplicacion/plantillas /Plantillas (desarrollo)

7 2. Páginas maestras Disponibles en: Aplicación: MasterPage.master Campus Virtual: MasterPageCV.master Web: MasterPageUA.es.master MasterPageUA.ca.master MasterPageUA.en.master /guiaestilo/masterpages/app_localresources

8 3. Clase UAPage /Plantillas/material/App_Code.zip public partial class _Default : System.Web.UI.Page por public partial class _Default : UAPage En el web.config: <pages pagebasetype="ua.uapage"> <namespaces> <add namespace="ua"/> </namespaces> </pages>

9 4. Web.Config <appsettings> <add key="servidorscripts_masterpage" value=" </appsettings> En producción: <add key="servidorscripts_masterpage" value="

10 4. Web Config Para web (Vualà) <appsettings> <add key="pagina-vuala" value=" <add key="todo-vuala" value="s"/> </appsettings>

11 Aplicaciones independientes 4. Web.Config <add key="titulo-es" value="plantillas para el curso"/> <add key="link-titulo-es" value=" <add key="subtitulo-es" value="universidad de Alicante" /> <add key="titulo-ca" value="plantillas para el curso (ca)"/> <add key="link-titulo-ca" value=" <add key="subtitulo-ca" value="universitat d'alacant" /> <add key="titulo-en" value="plantillas para el curso (en)"/> <add key="link-titulo-en" value=" <add key="subtitulo-en" value="university of Alicante" />

12 Una columna <asp:panel ID="Panel1" runat="server" CssClass="columnas_1" > <asp:label ID="LabelNombre" runat="server" Text="Nombre" AssociatedControlID="TextBoxNombre"></asp:Label> <asp:textbox ID="TextBoxNombre" runat="server"></asp:textbox> </asp:panel> <asp:panel ID="Panel2" runat="server" CssClass="columnas_1" > <asp:label ID="LabelApellidos" runat="server" Text="Apellidos" AssociatedControlID="TextBoxApellidos"></asp:Label> <asp:textbox ID="TextBoxApellidos" runat="server"></asp:textbox> </asp:panel>

13 Dos columnas <asp:panel ID="Panel1" runat="server" CssClass="columnas_2" > <asp:label ID="LabelNombre" runat="server" Text="Nombre" AssociatedControlID="TextBoxNombre"></asp:Label> <asp:textbox ID="TextBoxNombre" runat="server"></asp:textbox> </asp:panel> <asp:panel ID="Panel2" runat="server" CssClass="columnas_2" > <asp:label ID="LabelApellidos" runat="server" Text="Apellidos" AssociatedControlID="TextBoxApellidos"></asp:Label> <asp:textbox ID="TextBoxApellidos" runat="server"></asp:textbox> </asp:panel>

14 Dos columnas de diferente tamaño <asp:panel ID="Panel1" runat="server" CssClass="columnas_1_3" > <asp:label ID="LabelNombre" runat="server" Text="Nombre" AssociatedControlID="TextBoxNombre"></asp:Label> <asp:textbox ID="TextBoxNombre" runat="server"></asp:textbox> </asp:panel> <asp:panel ID="Panel2" runat="server" CssClass="columnas_2_3" > <asp:label ID="LabelApellidos" runat="server" Text="Apellidos" AssociatedControlID="TextBoxApellidos"></asp:Label> <asp:textbox ID="TextBoxApellidos" runat="server"></asp:textbox> </asp:panel>

15 Agrupaciones de campos <asp:panel ID="Panel1" runat="server" CssClass="" GroupingText="Datos Personales"> Contenido </asp:panel> Por defecto CssClass="" Redondeado CssClass="redondeado" Simple CssClass="simple"

16 Asociar siempre Etiquetas <asp:label ID="LabelNombre" runat="server" Text="Nombre" AssociatedControlID="TextBoxNombre"></asp:Label> <asp:label ID="LabelNombre" CssClass="pequeno" Text="Nombre"...

17 Campos de texto <asp:panel ID="Panel13" CssClass="columnas_1" runat="server"> <asp:label ID="Label8" runat="server" CssClass="medio" AssociatedControlID="TextBox8" Text="Label">medio</asp:Label> <asp:textbox ID="TextBox8" CssClass="medio" runat="server"> </asp:textbox> </asp:panel>

18 Texto de ayuda <asp:panel ID="Panel15" CssClass="columnas_1" runat="server"> <asp:label ID="Label10" runat="server" CssClass="medio" AssociatedControlID="TextBox10" Text="Label">grande</asp:Label> <asp:textbox CssClass="grande" ID="TextBox10" ToolTip="Ejemplo de un mensaje de ayuda asociado al campo" runat="server"></asp:textbox> </asp:panel>

19 Radiobuttons y checkbox <asp:checkboxlist ID="CheckBoxList2" runat="server" RepeatLayout="Flow" CssClass="checkbox mediano" RepeatDirection="Vertical" > <asp:listitem>moda</asp:listitem> <asp:listitem>televisión</asp:listitem> </asp:checkboxlist>

20 Campos obligatorios <asp:panel ID="Panel22" CssClass="columnas_1" runat="server"> <asp:label ID="Label15" runat="server" CssClass="medio" AssociatedControlID="TextBox7" Text="Label">pequeno</asp:Label> <asp:textbox ID="TextBox7" CssClass="pequeno required" runat="server"></asp:textbox> </asp:panel>

21 Validación de campos Siempre con ValidationSumary Display=none Estilos: (msg) msg-error, msg-ok, msg-warn y msg-info HeaderText=<h3>Datos incorrectos</h3> Dentro de un panel

22 Campos con errores

English-Language Arts Content Standards

English-Language Arts Content Standards English-Language Arts Content Standards for CA Public Schools Page 1 of 10 English-Language Arts Content Standards Estándares de contenido académico de Lengua y literatura en inglés English-Language Arts

More information

Schema XML_PGE.xsd. element GrupoInformes. attribute GrupoInformes/@version. XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap.

Schema XML_PGE.xsd. element GrupoInformes. attribute GrupoInformes/@version. XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap. Schema XML_PGE.xsd schema location: attribute form default: element form default: targetnamespace: XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap.es/xmlpge element GrupoInformes children Informe

More information

How To Control Asp.Net Html And Html On A Pc Or Mac Or Mac (For Mac) On A Web Browser On A Mac Or Pc Or Pc (For Pc Or Ipad) On Pc Or Microsoft Mac Or Ipa (

How To Control Asp.Net Html And Html On A Pc Or Mac Or Mac (For Mac) On A Web Browser On A Mac Or Pc Or Pc (For Pc Or Ipad) On Pc Or Microsoft Mac Or Ipa ( Vakgroep ICT Webprogrammatie ASP.NET BASICS 2012 Rogier van der Linde HTML Controls en Web Controls HTML controls dienen voor de snelle omzetting van bestaande HTML pagina s, Web controls zijn veel flexibeler.

More information

Propiedades del esquema del Documento XML de envío:

Propiedades del esquema del Documento XML de envío: Web Services Envio y Respuesta DIPS Courier Tipo Operación: 122-DIPS CURRIER/NORMAL 123-DIPS CURRIER/ANTICIP Los datos a considerar para el Servicio Web DIN que se encuentra en aduana son los siguientes:

More information

INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE

INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE YEAR 2015-2016 INDEX 1. GENERAL 2. INTRODUCTORY LETTER 3. GUIDE FOR BUSINESSES / GUÍA PARA LAS EMPRESAS. 4. CONFIRMATION FORM / CARTA DE CONFIRMACIÓN.

More information

Sales Management Main Features

Sales Management Main Features Sales Management Main Features Optional Subject (4 th Businesss Administration) Second Semester 4,5 ECTS Language: English Professor: Noelia Sánchez Casado e-mail: noelia.sanchez@upct.es Objectives Description

More information

Cata de Vinos en America del Sur

Cata de Vinos en America del Sur Crédito Fotográfico: https://www.flickr.com/photos/annamagal/ page 1 of 22 https://www.flickr.com/photos/shepaused4thought/ page 2 of 22 https://www.flickr.com/photos/madanelu/ page 3 of 22 https://www.flickr.com/photos/travelwayoflife/

More information

CHILD CARE 2016 SUMMER CREDENTIAL COURSES NEW YORK

CHILD CARE 2016 SUMMER CREDENTIAL COURSES NEW YORK CHILD CARE 2016 SUMMER CREDENTIAL COURSES NEW YORK 100% online Convenient, evening classes Caring instructors with field experience Scholarships available We are proud to offer you the fully accredited

More information

Curriculum Reform in Computing in Spain

Curriculum Reform in Computing in Spain Curriculum Reform in Computing in Spain Sergio Luján Mora Deparment of Software and Computing Systems Content Introduction Computing Disciplines i Computer Engineering Computer Science Information Systems

More information

Marketing segmentation video download, video game marketing agency, promociona tu negocio en internet, como promocionar un negocio de cupcakes.

Marketing segmentation video download, video game marketing agency, promociona tu negocio en internet, como promocionar un negocio de cupcakes. Marketing segmentation video download, video game marketing agency, promociona tu negocio en internet, como promocionar un negocio de cupcakes. > CHECK HERE < Wistia video marketing 101 product details

More information

Tema: Encriptación por Transposición

Tema: Encriptación por Transposición import java.awt.*; import java.awt.event.*; import javax.swing.*; public class PrincipalSO extends JApplet implements ActionListener { // Declaración global JLabel lblclave, lblencriptar, lblencriptado,

More information

2012 #sharepointcouncil. Microsoft Corporation. All rights reserved.

2012 #sharepointcouncil. Microsoft Corporation. All rights reserved. Alejandro Fernández, Partner Account Manager, Microsoft Juan Manuel Fernández, Gerente de Negocios, BSN Latam SharePoint Council Costa Rica 2012 Agradecimientos especiales: Logística del SharePoint Council:

More information

1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS

1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS 1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS 1.1 Solicitud certificado:

More information

Prepárate. BT 030 - Computer ABCs for Women in Transition

Prepárate. BT 030 - Computer ABCs for Women in Transition Prepárate Lane Community College offers classes for students to establish a foundation for a successful transition to college. The classes below are recommended for students as resources for a successful

More information

CATÁLOGO CURSOS PLATAFORMA ELEARNING

CATÁLOGO CURSOS PLATAFORMA ELEARNING CATÁLOGO CURSOS PLATAFORMA ELEARNING Avda. Diagonal, 98-100 - Distrito 22@ Barcelona (España, 08019) Tel: 932060249 Fax: 932060646 www.pue.es Bibliotecas académicas de elearning Descripción Academic Office

More information

El poder de la Programación de Excel y Visual Basic User Review --->>> Enter Here More Details => VISIT HERE

El poder de la Programación de Excel y Visual Basic User Review --->>> Enter Here More Details => VISIT HERE Visual basic 2010 free download full version for windows 7, microsoft visual studio 2012 professional free, visual basic 2010 convert string to datetime. El poder de la Programación de Excel y Visual

More information

Range of studies: List of Courses Taught in Spanish CURSO 2014 15

Range of studies: List of Courses Taught in Spanish CURSO 2014 15 Course Title (English) Course Title (Spanish) Degree Year Semester Caracter Speciality Code ECTS Calculus for Infomatics Cálculo para la Computación BCE BSE BCSE 1st 1st Comp. Subjet 101 6 Discrete Mathematics

More information

56h NIVEL LOWER INTERMEDIATE INGLÉS OBJETIVOS DEL CURSO. ÍNDICE 1 Objetivos didácticos_unit 1

56h NIVEL LOWER INTERMEDIATE INGLÉS OBJETIVOS DEL CURSO. ÍNDICE 1 Objetivos didácticos_unit 1 56h INGLÉS OBJETIVOS DEL CURSO Consta de 9 unidades que gramaticalmente comienzan con un refuerzo del nivel 1, llegando hasta el uso de los condicionales y el estilo indirecto. Continuamos introduciendo

More information

Global Art: A Sense of Caring Nos Preocupamos por los Demas

Global Art: A Sense of Caring Nos Preocupamos por los Demas Project Starter Kit for Online Collaborations Submitted by Jennifer Geist Bridges to Understanding Seattle, WA December 2006 Global Art: A Sense of Caring Nos Preocupamos por los Demas A Starter Kit for

More information

Cliente de correo electronico en modo texto: mutt. Por Paco Aldarias Raya. Impreso: 19 de enero de 2006

Cliente de correo electronico en modo texto: mutt. Por Paco Aldarias Raya. Impreso: 19 de enero de 2006 Cliente de correo electronico en modo texto: mutt Por Paco Aldarias Raya Impreso: 19 de enero de 2006 Email: pacolinux arroba inicia punto es Web: http://pagina.de/pacodebian Con Linux Debian. En Valencia

More information

Dave Rojas. Summary. Experience. Software Engineer - Web Developer & Web Designer davejrojas@gmail.com

Dave Rojas. Summary. Experience. Software Engineer - Web Developer & Web Designer davejrojas@gmail.com Dave Rojas Software Engineer - Web Developer & Web Designer davejrojas@gmail.com Summary Software Engineer with humanistic tendencies. Passionated about Web development and Web design with a critical and

More information

Consejo Regulador del Mezcal

Consejo Regulador del Mezcal Consejo Regulador del Mezcal Consejo Mexicano Regulador de la Calidad del Mezcal P R E S I D E N C I A CIRCULAR # 56 Oaxaca de Juárez, Oaxaca, México 1 de Abril de 2015. A TODOS NUESTROS ASOCIADOS Como

More information

Cambridge IGCSE. www.cie.org.uk

Cambridge IGCSE. www.cie.org.uk Cambridge IGCSE About University of Cambridge International Examinations (CIE) Acerca de la Universidad de Cambridge Exámenes Internacionales. CIE examinations are taken in over 150 different countries

More information

Citrix User Profile Manager - Citrix UPM

Citrix User Profile Manager - Citrix UPM 1 de 15 10/09/2008 13:56 Citrix User Profile Manager - Citrix UPM Uso de Citrix User Profile Manager, Citrix User Profile Manager es un nuevo producto de Citrix que esperemos nos sirva para quitarnos un

More information

Oracle 11g Administration

Oracle 11g Administration Oracle 11g Administration Duración: 40 horas Descripción: En este curso, los alumnos realizarán las tareas administrativas clave en Oracle Database 11g, como la creación y control de bases de datos, administración

More information

manual de usuario lg optimus l5

manual de usuario lg optimus l5 manual de usuario lg optimus l5 Print and Online Should you be particular with knowing everything concerning this manual de usuario lg optimus l5, you must search for these records. MANUAL DE USUARIO LG

More information

Visual basic string search function, download source code visual basic 6.0 gratis. > Visit Now <

Visual basic string search function, download source code visual basic 6.0 gratis. > Visit Now < Visual basic string search function, download source code visual basic 6.0 gratis. > Visit Now < Visual studio 2010 c# coding standards microsoft visual studio 2012 ultimate kickass curso online de basic

More information

SUMMER WORK AP SPANISH LANGUAGE & CULTURE Bienvenidos a la clase de Español AP!

SUMMER WORK AP SPANISH LANGUAGE & CULTURE Bienvenidos a la clase de Español AP! SUMMER WORK AP SPANISH LANGUAGE & CULTURE Bienvenidos a la clase de Español AP! To truly learn a language you have to use it as much as possible. The AP Exam focuses on the four communication skills: speaking,

More information

Domina Google Con Video Marketing 2.0 -> Click Here

Domina Google Con Video Marketing 2.0 -> Click Here Online video marketing wikipedia, marketing video production software, video marketing 3.0, software generador de trafico web, promociona tu negocio letsbonus. Domina Google Con Video Marketing 2.0 ->

More information

BSC-CNS pkirisgrid User Manual

BSC-CNS pkirisgrid User Manual BSC-CNS pkirisgrid User Manual Version: 1.6 Barcelona, 10. Dec. 2010 Table of Contents 1 Introduction... 4 1.1 BSC-CNS RA Policy Restrictions...4 2 User... 5 2.1 Request a user certificate (CSR)...5 2.2

More information

240EO031 - Supply Chain Design

240EO031 - Supply Chain Design Coordinating unit: 240 - ETSEIB - Barcelona School of Industrial Engineering Teaching unit: 732 - OE - Department of Management Academic year: Degree: 2015 MASTER'S DEGREE IN MANAGEMENT ENGINEERING (Syllabus

More information

Supervisión y sistemas de información para la industria.

Supervisión y sistemas de información para la industria. Supervisión y sistemas de información para la industria. Manel Pozo Responsable de Software para Iberia 29 de Abril 2014 PUBLIC INFORMATION Rev 5058-CO900E La visión PUBLIC INFORMATION 2 3 La Visión La

More information

Spanish Grammar II. Tierra Encantada Charter School. Contact Number: (505) 983-3337

Spanish Grammar II. Tierra Encantada Charter School. Contact Number: (505) 983-3337 Spanish Grammar II Tierra Encantada Charter School Mr. Arruga Contact Number: (505) 983-3337 Course Description/Objectives / Descripcion del curso / Objetivos: La asignatura de Gramatica espanola pretende

More information

AV-002: Professional Web Component Development with Java

AV-002: Professional Web Component Development with Java AV-002: Professional Web Component Development with Java Certificación Relacionada: Oracle Certified Web Component Developer Detalles de la Carrera: Duración: 120 horas. Introducción: Java es un lenguaje

More information

CATÁLOGO CURSOS PLATAFORMA ELEARNING

CATÁLOGO CURSOS PLATAFORMA ELEARNING CATÁLOGO CURSOS PLATAFORMA ELEARNING Bibliotecas académicas de elearning Descripción Academic Office Library Elearning sobre Office 2003, 2007 y 2010 Academic Windows Client Library Academic Windows Server

More information

manual de usuario joomla 15 espanol : The User's Guide

manual de usuario joomla 15 espanol : The User's Guide manual de usuario joomla 15 espanol : The User's Guide manual de usuario joomla 15 espanol actually features a great offer for his or her customers by providing users unlimited access and downloads. MANUAL

More information

Programming in C# with Microsoft Visual Studio 2010

Programming in C# with Microsoft Visual Studio 2010 Introducción a la Programación Web con C# en Visual Studio 2010 Curso: Introduction to Web development Programming in C# with Microsoft Visual Studio 2010 Introduction to Web Development with Microsoft

More information

50399AE Diseño de soluciones Business Intelligence con Microsoft SQL Server 2008

50399AE Diseño de soluciones Business Intelligence con Microsoft SQL Server 2008 50399AE Diseño de soluciones Business Intelligence con Microsoft SQL Server 2008 Fabricante: Indra Grupo: Inteligencia de Negocios Subgrupo: SQL Server 2008 - ETL - AS - RS Formación: Indra Horas: 25 Introducción

More information

OE3 Trust Funds Health. Security. Service.

OE3 Trust Funds Health. Security. Service. OE3 Trust Funds Health. Security. Service. Operating Engineers Trust Funds 1640 South Loop Road, Alameda, CA 94502 P.O. Box 23190, Oakland, CA 94623-0190 (800) 251-5014 OE3trustfunds.org Date: October

More information

UNIVERSIDAD PONTIFICIA COMILLAS FACULTY OF ECONOMICS AND BUSINESS ADMINISTRATION

UNIVERSIDAD PONTIFICIA COMILLAS FACULTY OF ECONOMICS AND BUSINESS ADMINISTRATION UNIVERSIDAD PONTIFICIA COMILLAS FACULTY OF ECONOMICS AND BUSINESS ADMINISTRATION List of Subjects by Department 15-16 DEPARTAMENTO DE ECONOMÍA - DEPARTMENT OF ECONOMICS Análisis de la Coyuntura Analysis

More information

Annual Notice of Changes for 2016

Annual Notice of Changes for 2016 SCAN Connections at Home (HMO SNP) offered by SCAN Health Plan Annual Notice of Changes for 2016 You are currently enrolled as a member of SCAN Connections at Home. Next year, there will be some changes

More information

Curso SQL Server 2008 for Developers

Curso SQL Server 2008 for Developers Curso SQL Server 2008 for Developers Objetivos: Aprenderás a crear joins interiores y exteriores complejos, consultas agrupadas, y subconsultas Aprenderás a manejar los diferentes tipos de datos y sabrás

More information

Zurich, 3-4 December 2010 ERES Education Seminar AUDIO-VISUAL TECHNIQUES APPLIED DISCIPLINE OF REAL

Zurich, 3-4 December 2010 ERES Education Seminar AUDIO-VISUAL TECHNIQUES APPLIED DISCIPLINE OF REAL Zurich, 3-4 December 2010 AUDIO-VISUAL TECHNIQUES APPLIED TO THE TEACHING DISCIPLINE OF REAL ESTATE APPRAISAL S. Spairani, i J. Roca Whatever you tell me, I will forget it, whatever you teach me, I will

More information

INGENIERÍA DE EDIFICACIÓN BUILDING ENGINEERING (SUBJECT S LIST UPDATED IN APRIL, 2015)

INGENIERÍA DE EDIFICACIÓN BUILDING ENGINEERING (SUBJECT S LIST UPDATED IN APRIL, 2015) INGENIERÍA DE EDIFICACIÓN BUILDING ENGINEERING (SUBJECT S LIST UPDATED IN APRIL, 2015) (E): Elective courses ALL LECTURES ARE TAUGHT IN SPANISH LANGUAGE CURSO CONSTRUCCIÓN I. HISTORIA, TIPOLOGÍAS Y FUND.

More information

This guide has information on the services, features & functions that you have with DT OneBill. ANSWER MACHINE

This guide has information on the services, features & functions that you have with DT OneBill. ANSWER MACHINE Welcome to DT OneBill. This gui has information on the services, features & functions that you have with DT OneBill. Access Co Options Change the co Press 1 for Options. Press 2 to change the co. Enter

More information

Financial Aid Information

Financial Aid Information Financial Aid Financial aid refers to any grant, scholarship, loan or paid employment offered to help a student meet his/ her college expenses. These monies can be meritbased and/or need-based. Merit-based

More information

History of Algorithms: An e-learning free election subjet, in a classical university E-MATH 2011. a(*) Rosa M. Pinero Puerto Ramírez

History of Algorithms: An e-learning free election subjet, in a classical university E-MATH 2011. a(*) Rosa M. Pinero Puerto Ramírez History of Algorithms: An e-learning free election subjet, in a classical university Alfonsa García(*) a(*) Rosa M. Pinero Puerto Ramírez (*) UPM Educative Innovation Group GIEMATIC Overview Introduction

More information

Home vol.3 - Bathrooms - Scenes & Shapes

Home vol.3 - Bathrooms - Scenes & Shapes Baños-1 Bathrooms-1 modelos 3D para usuarios Strata 3D models for Strata users Manual de referencia Reference manual Escenas y shapes listos para usar con alto nivel de detalle Scenes & Shapes ready to

More information

User s Manual Customer Service Website

User s Manual Customer Service Website User s Manual Customer Service Website Seres 2013 Pág. 2 Introduction Introducción The solution presented is the only point of contact between the customer and the ticket management tool. The customer

More information

SUMMER PROGRAM APPLICATION

SUMMER PROGRAM APPLICATION www.iefl.org SUMMER PROGRAM APPLICATION LATINO STUDENT LEADERSHIP CONFERENCE July 29 August 3, 2012 ASTROCAMP IDYLLWILD, CALIFORNIA MAY BE DUPLICATED INLAND EMPIRE Dear Student: If you are an eighth- or

More information

Didactic training using a CNC lathe designed in a virtual environment

Didactic training using a CNC lathe designed in a virtual environment Didactic training using a CNC lathe designed in a virtual environment Mi g u e l A. Hi d a l g o* Je s ú s D. Ca r d o n a** Fa b i o A. Ro j a s*** Resumen El presente artículo presenta una investigación

More information

Curso SQL Server 2012 para Desarrolladores

Curso SQL Server 2012 para Desarrolladores Curso SQL Server 2012 para Desarrolladores Objetivos: Obtener una introducción al diseño de Bases de Datos Relacionales y a SQL Usar el Management Studio y las características de SQL Server 2012 para desarrallodores.

More information

X. Apéndice C. Listado de Códigos.

X. Apéndice C. Listado de Códigos. X. Apéndice C. Listado de Códigos. 10.1 Version2.aspx

More information

Military Scholarship & Employment Program (MSEP)

Military Scholarship & Employment Program (MSEP) MSEP Military Scholarship & Employment Program (MSEP) INCLUDES: Army Spouse Employment Partnership (ASEP); Army/Air National Guard; Air Force; Marine Corps; Navy; Coast Guard CONTENTS SUMMARY:...3 WHO

More information

Cursos elearning disponibles en Microsoft IT Academy Advanced Level NIVEL CURSO O COLECCIÓN DE CURSOS IDIOMA Windows Server 2008 Advanced Clinic

Cursos elearning disponibles en Microsoft IT Academy Advanced Level NIVEL CURSO O COLECCIÓN DE CURSOS IDIOMA Windows Server 2008 Advanced Clinic Cursos elearning disponibles en Microsoft IT Academy Advanced Level NIVEL CURSO O COLECCIÓN DE CURSOS IDIOMA Windows Server 2008 Advanced Clinic 5939: Introducing Server Management in Windows Server 2008

More information

CUSTOMER ENGAGEMENT & COMMERCE PORQUE EL CAMINO & EL RESULTADO IMPORTAN

CUSTOMER ENGAGEMENT & COMMERCE PORQUE EL CAMINO & EL RESULTADO IMPORTAN CUSTOMER ENGAGEMENT & COMMERCE PORQUE EL CAMINO & EL RESULTADO IMPORTAN NAME TITLE 2011 SAP AG. All rights reserved. 1 QUÉ SIGNIFICA CUSTOMER ENGAGEMENT AND COMMERCE? RELACIONARNOS CON NUESTROS CLIENTES

More information

Created with Haiku Deck, presentation software that's simple, beautiful and fun. By Daniel Moore

Created with Haiku Deck, presentation software that's simple, beautiful and fun. By Daniel Moore Encuentra más info en... http://www.unique-southamerica-travel-experience.com/ecuador-turismo.html Web móbil: http://m.unique-southamerica-travel-experience.com/ecuador-turismo https://www.flickr.com/photos/robnunn/

More information

New Server Installation. Revisión: 13/10/2014

New Server Installation. Revisión: 13/10/2014 Revisión: 13/10/2014 I Contenido Parte I Introduction 1 Parte II Opening Ports 3 1 Access to the... 3 Advanced Security Firewall 2 Opening ports... 5 Parte III Create & Share Repositorio folder 8 1 Create

More information

CONCEPTS OF INDUSTRIAL AUTOMATION. By: Juan Carlos Mena Adolfo Ortiz Rosas Juan Camilo Acosta

CONCEPTS OF INDUSTRIAL AUTOMATION. By: Juan Carlos Mena Adolfo Ortiz Rosas Juan Camilo Acosta CONCEPTS OF By: Juan Carlos Mena Adolfo Ortiz Rosas Juan Camilo Acosta What is industrial automation? Introduction Implementation of normalized technologies for optimization of industrial process Where

More information

GUL-UC3M Jornadas Técnicas

GUL-UC3M Jornadas Técnicas GUL-UC3M Jornadas Técnicas Global Open Source Enterprises My experience in Openbravo 14 de Noviembre de 2008 Agenda Introduction to Openbravo Dynamics of Open Source Openbravo Community Services My takeaways

More information

UNITED FINANCIAL EMPOWERMENT $ CENTER NOW CLAIM IT! GET YOUR TAXES DONE FOR FREE *!

UNITED FINANCIAL EMPOWERMENT $ CENTER NOW CLAIM IT! GET YOUR TAXES DONE FOR FREE *! File a Tax Return to Claim the Tax Benefits You Earned with the Earned Income Credit and Child Tax Credit NOW CLAIM IT! If you worked in 2012 and earned less than $50,000... GET YOUR TAXES DONE FOR FREE

More information

Catálogo de cursos plataforma elearning Microsoft Imagine Academy: Microsoft SQL Server y Visual Studio

Catálogo de cursos plataforma elearning Microsoft Imagine Academy: Microsoft SQL Server y Visual Studio Catálogo de cursos plataforma elearning Microsoft Imagine Academy: Microsoft SQL Server y Visual Studio Academic Visual Studio Library Curso Nombre del curso Idioma 2263 Clinic 2263: Exam Preparation for

More information

manual usuario blackberry curve 8520

manual usuario blackberry curve 8520 manual usuario blackberry curve 8520 Reference Manual To find out featuring to make use of and how to totally exploit manual usuario blackberry curve 8520 to your advantage, there are several resources

More information

January 1, 2016 December 31, 2016. Summary of Benefits. First Health Part D Value Plus (PDP) S5768-144 S5768.144.1

January 1, 2016 December 31, 2016. Summary of Benefits. First Health Part D Value Plus (PDP) S5768-144 S5768.144.1 January 1, 2016 December 31, 2016 Summary of Benefits First Health Part D Value Plus (PDP) S5768-144 S5768.144.1 Y0001_2016_S5768_144 Accepted 09/2015 Summary of Benefits January 1, 2016 December 31, 2016

More information

Modificación de los Gastos operativos y de administración en JPMorgan Investment Funds y JPMorgan Funds

Modificación de los Gastos operativos y de administración en JPMorgan Investment Funds y JPMorgan Funds Modificación de los operativos y de administración en JPMorgan Investment s y JPMorgan s June 2015 Por la presente, la Sociedad gestora informa a los accionistas de las modificaciones efectuadas en relación

More information

Trabajo Fin de Grado

Trabajo Fin de Grado Trabajo Fin de Grado Desarrollo de un módulo de reclutamiento y selección implementado con servicios web seguros integrado en un sistema de gestión integral de recursos humanos ANEXOS Autor Sergio Sanz

More information

Child Care. CREDENTIALS fall 2015. v inclusion Every child is a masterpiece Page 3

Child Care. CREDENTIALS fall 2015. v inclusion Every child is a masterpiece Page 3 Child Care CREDENTIALS fall 2015 v inclusion Every child is a masterpiece Page 3 v scholarship T.E.A.C.H. offers a substantial new increase See back page v degree You are already on your own special pathway

More information

COMPUTER CLASSES FEBRUARY 2015 NEIGHBORHOOD & REGIONAL LIBRARIES. Linking YOU to the World of Technology

COMPUTER CLASSES FEBRUARY 2015 NEIGHBORHOOD & REGIONAL LIBRARIES. Linking YOU to the World of Technology NEIGHBORHOOD & REGIONAL LIBRARIES Linking YOU to the World of Technology COMPUTER CLASSES FEBRUARY 2015 Linking You to the World www.houstonlibrary.org 832-393-1313 NEIGHBORHOOD & REGIONAL LIBRARIES CENTRAL

More information

Annual Notice of Changes for 2015

Annual Notice of Changes for 2015 Cigna-HealthSpring Rx Secure (PDP) offered by Cigna HealthSpring Annual Notice of Changes for 2015 You are currently enrolled as a member of Cigna Medicare Rx Secure (PDP). Next year, there will be some

More information

NEIGHBORHOOD & REGIONAL LIBR ARIES

NEIGHBORHOOD & REGIONAL LIBR ARIES NEIGHBORHOOD & REGIONAL LIBRARIES Linking YOU to the World of Technology COMPUTER CLASSES AUGUST 2015 Linking You to the World www.houstonlibrary.org NEIGHBORHOOD & REGIONAL LIBRARIES BRACEWELL 9002 Kingspoint

More information

LINIO COLOMBIA. Starting-Up & Leading E-Commerce. www.linio.com.co. Luca Ranaldi, CEO. Pedro Freire, VP Marketing and Business Development

LINIO COLOMBIA. Starting-Up & Leading E-Commerce. www.linio.com.co. Luca Ranaldi, CEO. Pedro Freire, VP Marketing and Business Development LINIO COLOMBIA Starting-Up & Leading E-Commerce Luca Ranaldi, CEO Pedro Freire, VP Marketing and Business Development 22 de Agosto 2013 www.linio.com.co QUÉ ES LINIO? Linio es la tienda online #1 en Colombia

More information

USERS MANUAL IN.TRA.NET PROJECT

USERS MANUAL IN.TRA.NET PROJECT This project has been funded with support from the European Commission. This publication (communication) reflects the views only of the author, and the Commission cannot be held responsible for any use

More information

El concepto 360+ nace de la propuesta de unir ambientes dentro de un mismo espacio, sin renunciar a sus diferentes necesidades.

El concepto 360+ nace de la propuesta de unir ambientes dentro de un mismo espacio, sin renunciar a sus diferentes necesidades. floor & wall design El concepto 360+ nace de la propuesta de unir ambientes dentro de un mismo espacio, sin renunciar a sus diferentes necesidades. Misma gráfica, diferentes materiales, múltiples formatos,

More information

Inglés nivel pre-intermedio (II)

Inglés nivel pre-intermedio (II) Inglés nivel pre-intermedio (II) 1 Objetivos didácticos_unit 1 1.1 Time, tense y weather 1.2 El adjetivo_ forma comparativa 1.3 El adjetivo_ forma superlativa 1.4 Watch de video and then read the script

More information

En esta guía se encuentran los cursos que se recomiendan los participantes en la implementación de un SGEn en dependencias del Gobierno Federal.

En esta guía se encuentran los cursos que se recomiendan los participantes en la implementación de un SGEn en dependencias del Gobierno Federal. En esta guía se encuentran los cursos que se recomiendan los participantes en la implementación de un SGEn en dependencias del Gobierno Federal. Las lecciones se agrupan en 5 cursos dirigidos cada participante

More information

Plumbers and Irrigators INSTRUCTIONS -- PLEASE READ CAREFULLY

Plumbers and Irrigators INSTRUCTIONS -- PLEASE READ CAREFULLY Phone:(401)462-8580 Fax: (401)462-8528 www.dlt.ri.gov/profregs Plumbers and Irrigators INSTRUCTIONS -- PLEASE READ CAREFULLY Applications that are incomplete or missing required documents will not be processed

More information

Application for World Wide Views on Climate and Energy Phoenix, AZ

Application for World Wide Views on Climate and Energy Phoenix, AZ Application for World Wide Views on Climate and Energy Phoenix, AZ Thank you for applying to be part of the Arizona deliberations for World Wide Views on Climate and Energy. To learn more about the global

More information

Electrician Application -- INSTRUCTIONS -- PLEASE READ CAREFULLY

Electrician Application -- INSTRUCTIONS -- PLEASE READ CAREFULLY Phone:(401)462-8580 Fax: (401)462-8528 www.dlt.ri.gov/profregs Electrician Application -- INSTRUCTIONS -- PLEASE READ CAREFULLY Applications that are incomplete or missing required documents will not be

More information

Template usage instructions

Template usage instructions Template usage instructions Starting with the AESLA 09 conference authors who use Microsoft Office must use the template provided in the webpage in order to write their full texts. The main reason for

More information

Pattern Recognition and Human Language Technology Group

Pattern Recognition and Human Language Technology Group Pattern Recognition and Human Language Technology Group (Grupo de Reconocimiento de Formas y Tecnologías de la Percepción) Institut Tecnològic d Informàtica Departament de Sistemes Informàtics i Computació

More information

Alessandro Comai. Ph.D. Candidate ESADE Business School, University Ramon Lull. Updated the 11of May 2005

Alessandro Comai. Ph.D. Candidate ESADE Business School, University Ramon Lull. Updated the 11of May 2005 Alessandro Comai Ph.D. Candidate ESADE Business School, University Ramon Lull Updated the 11of May 2005 Alessandro Comai. Licenciado en Ingeniería Industrial (BSc.Honor), MBA por la Universidad Pompeu

More information

ISC Spain. Enjoy a unique experience.

ISC Spain. Enjoy a unique experience. ISC Spain Enjoy a unique experience. PROGRAMA / PROGRAM - Alojamiento y pensión completa en residencia / Full board at the University Residence - 20 horas/ semana de clases de Español / 20 hours per

More information

Memorial Health Care System Catholic Health Initiatives Financial Assistance Application Form

Memorial Health Care System Catholic Health Initiatives Financial Assistance Application Form B Please note - Memorial Hospital may access external validation resources to assist in determining whether a full application for assistance is required. Financial Assistance Application 1) Patient Name

More information

WEB SERVICES WEB SERVICES

WEB SERVICES WEB SERVICES From Chapter 19 of Distributed Systems Concepts and Design,4 th Edition, By G. Coulouris, J. Dollimore and T. Kindberg Published by Addison Wesley/Pearson Education June 2005 1 Topics Introduccion Web

More information

LBWN ALQUILAR CON OPCIÓN A COMPRAR

LBWN ALQUILAR CON OPCIÓN A COMPRAR LBWN ALQUILAR CON OPCIÓN A COMPRAR BENEFICIOS PARA LA COMUNIDAD LBWN Alquilar con Opción a Comprar es una iniciativa de desarrollo de $5.8 millones que convertirá 24 foreclosures en viviendas unifamiliares

More information

Information and Application for Admission

Information and Application for Admission Information and Application for Admission CAMPUS LAREDO TEXAS 4519 East Del Mar Boulevard Laredo, TX 78041 ICM Campus P.O Box 450707 Laredo, TX 78045 www.centrodeartesymusica.com contactocentrodeartesymusica.com

More information

Avocados Australia, PO Box 8005 Woolloongabba Queensland 4102 Australia

Avocados Australia, PO Box 8005 Woolloongabba Queensland 4102 Australia Proceedings VII World Avocado Congress 2011 (Actas VII Congreso Mundial del Aguacate 2011). Cairns, Australia. 5 9 September 2011 Retail prices shed light for avocado industry Julie Petty and Joanna Embry

More information

Removing Language Barriers: Reaching Your Spanish Speaking Audience

Removing Language Barriers: Reaching Your Spanish Speaking Audience Removing Language Barriers: Reaching Your Spanish Speaking Audience Communications Tune Up Webinar Series MAXIMUS Center for Health Literacy Translation Services Group Mercedes Blanco Victoria Williams

More information

The following State forms have been included in your claims kit packet:

The following State forms have been included in your claims kit packet: RE: Workers Compensation Claims Kit Dear Policyholder: Welcome to Tower Group Companies Workers Compensation Insurance Program. Although we hope that your company never experiences an injury to an employee,

More information

ECCAIRS 5 Instalación

ECCAIRS 5 Instalación ECCAIRS 5 Instalación Paso a paso Preparado por: Arturo Martínez Oficina Regional Sudamericana Uniendo a la Aviación en Seguridad Operacional Seguridad Medioambiente Instalación Paso a paso Escenario Windows

More information

Re-broadcasting of bibliographic catalogues in MARC-XML format

Re-broadcasting of bibliographic catalogues in MARC-XML format Re-broadcasting of bibliographic catalogues in MARC-XML format Manuel Blázquez-Ochando * Paper submitted: May 21, 2013. Accepted: August 7, 2013. Abstract By using MARC-XML to modify the RSS code format,

More information

BUSINESS INTELLIGENCE: Data Visualization and Reporting

BUSINESS INTELLIGENCE: Data Visualization and Reporting BUSINESS INTELLIGENCE: Data Visualization and Reporting INTRODUCCIÓN Y CONTENIDOS CAPTACIÓN TRANSFORMACIÓN PRESENTACIÓN CONTENIDOS: 2 PRESENTACIÓN DE DATOS Autonomía Movilidad Dinamismo Customización Interfaces

More information

Instituto Cervantes - London

Instituto Cervantes - London Instituto Cervantes - London Would you like to learn Spanish in a Spanish environment? The Instituto Cervantes is the official place to learn Spanish in the world. In London we offer daytime and evening

More information

DIPLOMADO EN BASE DE DATOS

DIPLOMADO EN BASE DE DATOS DIPLOMADO EN BASE DE DATOS OBJETIVOS Preparan al Estudiante en el uso de las tecnologías de base de datos OLTP y OLAP, con conocimientos generales en todas las bases de datos y especialización en SQL server

More information

Quick Start Guide. toshiba ultrasound famio 5 manual usuario

Quick Start Guide. toshiba ultrasound famio 5 manual usuario toshiba ultrasound famio 5 manual usuario Quick Start Guide This toshiba ultrasound famio 5 manual usuario is in the form of independently produced user guides. TOSHIBA ULTRASOUND FAMIO 5 MANUAL USUARIO

More information

Annual Notice of Changes for 2015

Annual Notice of Changes for 2015 Cigna-HealthSpring Rx Secure-Xtra (PDP) offered by Cigna-HealthSpring Annual Notice of Changes for 2015 You are currently enrolled as a member of Cigna Medicare Rx Secure-Xtra (PDP). Next year, there will

More information

flexbox float float:left float float float float Dificultad para organizar El posicionamiento visual depende del markup No puedes centrar No controlas las alturas en sistemas de columnas table display:table

More information

More details >>> HERE <<< Como instalar wordpress en localhost xampp :: ebook

More details >>> HERE <<< Como instalar wordpress en localhost xampp :: ebook More details >>> HERE http://urlzz.org/luxatoel/pdx/2b1p2am/ Tags: # Online,

More information

Security API Cookbook

Security API Cookbook Sitecore CMS 6 Security API Cookbook Rev: 2010-08-12 Sitecore CMS 6 Security API Cookbook A Conceptual Overview for CMS Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 User, Domain,

More information

San Diego County. SCAN Health Plan. Evidence of Coverage. Scripps Signature offered by SCAN Health Plan (HMO)

San Diego County. SCAN Health Plan. Evidence of Coverage. Scripps Signature offered by SCAN Health Plan (HMO) San Diego County 2016 SCAN Health Plan Evidence of Coverage Scripps Signature offered by SCAN Health Plan (HMO) Y0057_SCAN_9180_2015F File & Use Accepted G9308 09/15 16C-EOC701 January 1 December 31,

More information