Archive for October 2013
Splash Screen for windows phone 8 apps

Create an image with 720*1280 px.Save it as SplashScreenImage.jpg in the root folder of your project then it will be automatically applied as splash screen for your app.Generally use it when first page of your app takes some time to load.This resolution.
Windows store apps XAML Webview control display webpage C#

In the below example i used a webview control to display google page in xaml webview control.XAML Code of webview <WebView x:Name="WebView" Width="400" Height="400" />C# Code to display google webpage in webview Uri targetUri.
JavaScript Part-8 Required field validation using js code

Javascript example code to add required field validation for html input textbox<!DOCTYPE html><html><head><script>function validateForm(){var x=document.forms["myForm"]["fname"].value;if (x==null || x=="") { alert("First.
JavaScript Part-7 Sending input parameters for js function

In this example when user click on the button two input parameters are sent to the js function to print them in alert boxJS code to send input parameters for function<!DOCTYPE html><html><body> <p>Click the button.
Javascript Part-6 changing css class using js code if condition

In this example i wrote two css classes cssclass1 and cssclass2. when page is loaded cssclass1 styles is applied to the div1 tag and when user click on the button cssclass2 is applied to div tag using javascript.js code to change css class of div tag<!DOCTYPE.
Javascript Part-5 changing background color style property using js code

Javascript code to change the background color style of div tag based on the color selected from dropdown by the user<html><head><script>function f1(){var x= document.getElementById('colorpicker').value;document.getElementById('colormsg').style.background=.
Javascript Part-3 inner html property to create html

In the below example onkeyup event is fired after every release of keyboard key.placeholder property is used to display a watermark message inside textbox.innerHTML is the property used in js code to add h1 tag inside paragraph tag.Js code to print.
Javascript Part-2 using variables , comments

Variables are used to hold the data retrieved from input controls.
In the below example a textbox and a button is displayed on the output screen. The text entered in the textbox is displayed in an alertbox when user clicks on the button.
In the below.
Javascript Part-1 What is Javascript?

What is Javascript?It is a light weight client side scripting language.You can write javascript code in html page to convert static web page to dynamic page.It is a case sensitive language ie., you cannot use lowercase letters incase of uppercase letters.It.
Windows Phone 8 apps development with Phone gap cardova

Apache cardova is used to create cross platform mobile applications.latest version of phonegap from 3.0 is called as cardova.It is an open source platform and used by the applications of ios, windows phone, android, blackberry and so on.For working.
Windows phone 8 apps C# navigation code with sending values from one page to other

Windows phone 8 apps C# navigation code with sending values from one page to otherHere is the code to under a button click to navigate from mainpage.xaml to Plans.xamlIn the below code hello is the text present inside a string planCategory.the value.
Reading json data from WebAPI in windows store apps xaml C#

In this example i created a Web api controller named as ConnectController contains a method named as get. It retreives data from SQL Server database table using ADO.NET Code.Code in WebAPI Controllerusing System;using System.Collections.Generic;using.
MVC Web API Example code in controller ADO.NET

ADO.NET C#.NET code in controller to return table data from sql server databaseusing System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Http;using System.Web.Http;using System.Data.SqlClient;using System.Data;namespace.
ASP.NET Web API

Web API is a part of the ASP.NET technology that fits in nicely in Web forms, Web pages and MVC.It is used to create web based services of any kind.Same Web API can return both xml format and JSON format data based on the request.If you request for.
What is cloud computing

Cloud computing is a concept of using resources like hardware and software which are physically existing is other locations through network.It has advantages like elasticity, metering, automatic deprovisioning, billing flexibilities.Elasticity : Scale.
Displaying data from sql server database in windows store app using webservice ado.net c# code

SQL Server Database TableWebService codeusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;using System.Data;using System.Data.SqlClient;using System.IO;using System.Collections;/// <summary>///.