Skip to main content

Posts

Showing posts from June, 2012

Other aspects of HTML5

There is great feature embedded with HTML5 that is multimedia support without any plugin at end user.The best part of this tag is that it support wide range of quality audio/video format. The tags which we use for audio and video are: <audio> <video> The code snippet for same: <audio id=“audio” controls preload="auto" autobuffer>   <source src="source1.mp3" />   <source src=" source2.ogg" /> </audio> <video id=“video” poster=”poster.jpg" src=”source.mp4" width="2" height="1" x-webkit-airplay="allow” autoplay controls> </video> HTML5 is enriched with other input type tag which is having great ability to enrich the mobile interface,this input type tag along with Jquery UI plugin give them very strong presence on mobile where end user get very lucrative look and feel. <input type="number" pattern="[0-9]*" /> <input type=...

RESTful service called from Jquery and used in HTML5

The above architecture is based upon the .NET framework and keeping in line the architectural guidelines offered as base line for standard web service oriented applications with disconnected rich front ends “ HTML5 ”. .NET 4.0 is a premiere software development framework that is used for building enterprise applications delivered to end users. Combined together with HTML 5 /JavaScript/JQuery and CSS, the .NET SDK along with its rich support for web application development, offers a top of the line web application development environment. As promised in last blog I am going to write some syntax/code snippet and architecture flow. In above architecture we will avoid server side control,we will use client side scripting to give same look and feel. As per our architecture user first make request from web page on server,so let's see how we will design webpage. As I mentioned in architecture we will be using HTML5 to design webpage. there are tags in HTML5 which is being common...

explanation on HTML5+WCF+JQuery

Well let me tell you in advance I was not aware about HTML5  before my last project.Once I started digging I found that this is platform independent,having support of all browser latest version,light weighted and best for mobile applicatio n and other smart devices.This gives you advantage of not create two website one for browser and other for mobile and smart devices. Now coming to technology front ,there are the following skill set you require to develop the portal based on HTML5: -C# 4.0 -WCF -HTML5 -CSS -JQuery and there latest plugin -SQL server Whole application will have four part: -HTML page using HTML5 tag(Developer can select HTML5 editor from VS2010 tools menu,which will support intellisense on HTML tag) -service layer using WCF RESTful classes(this layer can be segregated into three layer:        1-Service class        2-Business class        3- DataAccess Class B...