Student Questions - Microsoft



Student QuestionsDo our websites meets Industry Standards?Today’s Standards do not yet require testing on all OS, all Platforms and all screensYou should open your page on the followingWindows 10EdgeChromeAny otheriOS, Android, LinuxChromeFirefox of readingI do not recommend following the ‘hacker’ crowdsHacker is over used and irrelevant in today’s computer display design discussions.For example, not using Edge/IE is sillyReview Application 60% use IE/EdgeWhat changes do you recommended?Mobile ViewWordPress handles mobile view seamlesslyOnce the user has seen your logo (large image) make it smallerMenusWatch out for small screen scrollingMobile menus should flyoutMaps (Directions) HYPERLINK "" it have been better to design a website using HTML, JavaScript, or CSS?Understanding HTML, JavaScript and Cascading Style Sheets (CSS)VERY IMPORTANTOnly making web view in raw source code view is painful!Instructor QuestionsHow can I advance my students?Hardest thing to teach, most vital skillBuy in, getting others to fund or use the resultsPeople skills (numbered by importance)How I present the ideaWhoKnow your audienceWhatKnow what you will deliverWherePlatform, customersWhenHave a detailed planDesignDevelopTestDeploySupportPersonal appearanceIrrelevant if Number One is done correctlyWhat Web Design?Certification you will recommend?Associates Degree if possible (IT)Hands on portfolioTwo or more wed sites you design, developed, and deployedOne or more where you influenced the outcomeHow can I gain the experience?Your two examples are a great startGeneral QuestionsWhat is your degree?I have a Bachelor’s degree in Information Technology - Business with an Associate’s degree in Computer engineeringWhat classes did you take in college did you take that prepared you for this job?AssociatesCircuit design and AnalysisDigital CircuitNetwork Admin (NT and NetwareC, C++, Machine languageBachelorDatabase designBusiness classesCapstone projectWas it easy for you to find a job in your field?YesI did more programming at firstMost of my web development is support pagesWhat is a typical day like?Programing daysLog inOpen the Development interfaceMake updatesTesting DaysSitting with QA reviewing mistakesDiscussing requirements -> missed or bad Design DaysMeeting with brainstormingRequirement gatheringDesign groupingDeployment DaysUp real earlyValidationsGoing liveSupport DaysCalls from end usersCalls from ownersFocus groups to address must be fixed nowWhat is an average salary for this field?For someone that only does programming, Testing, Design, Deployment, or Support$55,000 – 75,000System administrators, subject matter experts, solution provider$100,000 - infinityDo you write your own code/design website from scratch or do you use a template/website builder?What is the projectFor bug fixes and upgradesThe platform used before you got involvedNew development, requirements50% existing platform25% scratch25% templateWhat website builders do you recommend?The one the client already usesBigger than neededAzure SQL Server and Active server pagesWait no open source?Open source is good enough softwareWhat tips do you have for a student interested in pursuing a career in web design?Design is a skill all on its ownThere is no need for any programmingGraphical imagesGraphical interfacesCommon logic workflow is the best place to startMake a local web siteHave both chrome and Edge/IEMap Embed “Hello world”4762580010<!DOCTYPE html><html><body>Hello World!</body></html>020000<!DOCTYPE html><html><body>Hello World!</body></html>Play Audio/Videoleft264160<!DOCTYPE html><html><body><audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg">Your browser does not support the audio element.</audio></body></html>020000<!DOCTYPE html><html><body><audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg">Your browser does not support the audio element.</audio></body></html> JavaScript left16510<!DOCTYPE html> <html> <body> <button onclick="playVid()" type="button">Play Video</button><button onclick="pauseVid()" type="button">Pause Video</button><br> <video id="myVideo" width="320" height="176"> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video.</video><script> var vid = document.getElementById("myVideo"); function playVid() { vid.play(); } function pauseVid() { vid.pause(); } </script> <p>Video courtesy of <a href="" target="_blank">Big Buck Bunny</a>.</p></body> </html>020000<!DOCTYPE html> <html> <body> <button onclick="playVid()" type="button">Play Video</button><button onclick="pauseVid()" type="button">Pause Video</button><br> <video id="myVideo" width="320" height="176"> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video.</video><script> var vid = document.getElementById("myVideo"); function playVid() { vid.play(); } function pauseVid() { vid.pause(); } </script> <p>Video courtesy of <a href="" target="_blank">Big Buck Bunny</a>.</p></body> </html>ASPPlay Audio/VideoDrag two buttons to the Default.aspx page in the source code view of Visual Web Developer. Add some breaks (<br /> between them. Name one button?“Play” and the other “Stop”. This is the updated markup of Default.aspx after adding the buttons: <%@ Page Language="C#" AutoEventWireup="true"? CodeFile="Default.aspx.cs" Inherits="_Default" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""> <html xmlns=""><head runat="server">??? <title></title></head><body>??? <form id="form1" runat="server">??? <div>??????? <asp:Button ID="Button1" runat="server" Text="Play" />??????? <br /><br />??????? <asp:Button ID="Button2" runat="server" Text="Stop" />??? </div>??? </form></body></html>Now go to Default.aspx.cs, this is the C# code. Copy and paste the code below to your sample code: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Media;using System.Web.UI.WebControls;public partial class _Default : System.Web.UI.Page {??? protected void Button1_Click(object sender, EventArgs e)??? {??????? SoundPlayer playthewavfile = new SoundPlayer(@"L:aspdotnetprojectsaudiowavstreamwavtest.wav");??????? playthewavfile.Play();??????? ??? }??? protected void Button2_Click(object sender, EventArgs e)??? {??????? SoundPlayer playthewavfile = new SoundPlayer(@"L:aspdotnetprojectsaudiowavstreamwavtest.wav");??????? playthewavfile.Stop();??????? ??? }} ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download