Chalermvong Vijitpiyakul Microsoft MVP - Client App. Dev. GF 28 Sep 2008.

Slides:



Advertisements
Similar presentations
Unit 02. ASP.NET Introduction HTML & Server controls Postbacks Page Lifecycle.
Advertisements

1 Unit 02. Visual Studio Visual Studio.NET Creating Projects Project Anatomy Using the IDE Code Snippets.
Languages for Dynamic Web Documents
Chalermvong Vijitpiyakul Microsoft MVP Greatfriends.biz Community Lead GF 30 August 2009.
MSc. Publishing on WWW JavaScript. What is JavaScript? A scripting language devised by Netscape Adds functionality to web pages by: Embedding code into.
Active X Microsoft’s Answer to Dynamic Content Reference: Using Active X by Brian Farrar QUE
Multiple Tiers in Action
CSC 2720 Building Web Applications JavaScript. Introduction  JavaScript is a scripting language most often used for client-side web development.  JavaScript.
ITM352 Javascript and Dynamic Web Pages: Client Side Processing.
2 Instant Messaging Your Route To Millions Dr. Neil Roodyn.
Server Side Scripting Norman White. Where do we do processing? Client side – Javascript (embed code in html) – Java applets (send java program to run.
300MM active users worldwide Worldwideleadership.
Computer science Languages, etc.. Overview For web-applications (HTML, JS) – Designing languages (HMTL, CSS) – Server Languages (PHP, ASP) – Extensions.
4.1 JavaScript Introduction
Server- Side technologies Client-side vs. Server-side scripts PHP basic ASP.NET basic ColdFusion.
CIS 375—Web App Dev II ASP.NET 2 Introducing Web Forms.
HTML Forms and Scripts. Session overview What are forms? Static vs dynamic Client-side scripts –JavaScript.
Christopher M. Pascucci.NET Programming: Basic ASPX Scripting & HTML Embedment.
Ku-Yaw Chang Assistant Professor, Department of Computer Science and Information Engineering Da-Yeh University.
JavaScript is a client-side scripting language. Programs run in the web browser on the client's computer. (PHP, in contrast, is a server-side scripting.
Working with Objects Creating a Dynamic Web Page.
Matrix Mapping Tool Sam Gross Internship at Virtual Technology Corporation.
Section 17.1 Add an audio file using HTML Create a form using HTML Add text boxes using HTML Add radio buttons and check boxes using HTML Add a pull-down.
Lesson 19: Site Development with FrontPage 2003 – Advanced Features.
DHTML: Working with Objects Creating a Dynamic Web Page.
Introducing ASP.NET 2.0. Internet Technologies WWW Architecture Web Server Client Server Request Response Network HTTP TCP/IP PC/Mac/Unix + Browser (IE,
Introduction to Programming the WWW I CMSC Summer 2003 Lecture 7.
USING XML AS A DATA SOURCE. Data binding is a process by which information in a data source is stored as an object in computer memory. In this presentation,
Coding for Mobile Week 13 TCNJ Web 2 Jean Chu. Web is Dead. Long live the Internet
Web Development in Microsoft Visual Studio Slide 2 Lecture Overview How to create a first ASP.NET application.
Introduction to the Document Object Model DOM *Understand document structure manipulation *Dynamic effects in web pages *Programming, scripting, web content.
JavaScript Syntax, how to use it in a HTML document
An Introduction to JavaScript By: John Coliton Tuesday, November 10, 1998 Center for Teaching and Learning.
Cs332a_chapt10.ppt CS332A Advanced HTML Programming DHTML Dynamic Hypertext Markup Language A term describing a series of technologies Not a stand-a-lone.
ASP.NET (Active Server Page) SNU OOPSLA Lab. October 2005.
JavaScript Introduction. Slide 2 Lecture Overview JavaScript background The purpose of JavaScript A first JavaScript example Introduction to getElementById.
HTML Overview Part 5 – JavaScript 1. Scripts 2  Scripts are used to add dynamic content to a web page.  Scripts consist of a list of commands that execute.
1 Applets. 2 Design of Applets 3 Sun wrote Java to be executable within a hosting application browser The applications are applets. An applet is downloaded.
ASP. ASP is a powerful tool for making dynamic and interactive Web pages An ASP file can contain text, HTML tags and scripts. Scripts in an ASP file are.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 14 Database Connectivity and Web Technologies.
INTRODUCTION JavaScript can make websites more interactive, interesting, and user-friendly.
UNDERSTANDING YOUR OPTIONS FOR CLIENT-SIDE DEVELOPMENT IN OFFICE 365 Mark Rackley
Chapter 15 Introducing jQuery Part 1. What is JavaScript? A programming language to add dynamic features to a web page. Client side.
Document Object Model Nasrullah. DOM When a page is loaded,browser creates a Document Object Model of the Page.
JavaScript & Introduction to AJAX
Lesson 30: JavaScript and DHTML Fundamentals. Objectives Define and contrast client-side and server-side technologies used to create dynamic content for.
Beginning JavaScript 4 th Edition. Chapter 1 Introduction to JavaScript and the Web.
Chapter 6 Murach's JavaScript and jQuery, C6© 2012, Mike Murach & Associates, Inc.Slide 1.
The Web Wizard’s Guide To DHTML and CSS Chapter 2 A Review of CSS2 and JavaScript.
Agenda Steps of App Building The Runtime Environment Managing App Data Debug and Test an App Validate an App Publish an App to a Store Packaging Apps.
CIS 375—Web App Dev II DHTML. 2 Introduction to DHTML _________ HTML is “a term used by some vendors to describe the combination of HTML, style sheets.
Windows App Studio Windows App Studio is the tool that makes it fast and easy to build Windows 10 apps. It’s accessible from any device with a browser.
Java Script and the DOM DOM stands for: –The Document Object Model When a browser reads a web page, it converts it’s contents from HTML into a hierarchical.
VertexPlus Softwares Pvt. Ltd. WEB TECHNOLOGIES BEFORE CHOOSING WEBSITE DEVELOPMENT SERVICES FOR WEBSITE vertexplus.com.
Section 10.1 Define scripting
Javascript and Dynamic Web Pages: Client Side Processing
Visual Studio 2017 By Michael Washington
What's new in the world of SharePoint development and deployment
Active Server Pages Computer Science 40S.
Section 17.1 Section 17.2 Add an audio file using HTML
Building Web Applications with Microsoft ASP
KnockoutJS -Pradeep Shet 31st August 2014.
JavaScript Introduction
A Shot of Windows Live Messenger and a Pint of Silverlight
Applets.
1/2/2019 9:19 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS.
Unit 6 part 3 Test Javascript Test.
Introduction to DHTML, the DOM, JS review
Murach's JavaScript and jQuery (3rd Ed.)
Presentation transcript:

Chalermvong Vijitpiyakul Microsoft MVP - Client App. Dev. GF 28 Sep 2008

 1. Client App. with Web Capabilities  2. Web App. with Client Capabilities

 Skills ?  HTML, DHTML, HTML DOM, Java Script  VB or C#, (.net fx 2.0)  Control  Web Browser Control

 1 using System.Runtime.InteropServices;  2 [ComVisible(true)]  public partial class Form1 : Form  3 webBrowser1.ObjectForScripting = this;  4 public void Method(string val)  {  MessageBox.Show(val);  }

 Id (required)  Event (important)  java script (need)

 Skills ?  User Control (Windows)  VB, C#  HTML  Web Services (Optional)

 Just Create Web Page.  Insert HTML tag

 Create Windows Form Control Library Project  Design UI, Controls  Do Coding.  Add Web Reference (Opt.)

 Just Create Web Services  Create Web Method

 Client App. with Web Capabilities  Web App. with Client Capabilities