icon
Leave a message

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Thursday, 20 February 2014

How to create Tic Tack Game in Windows Application with C# .Net

How to create Tic Tack Game in Windows Application with C# .Net Note: In this topic we will discuss about how to create Windows Games with cross and zero which is very popular and people generally play this game on paper with pen  First we take a Windows Application with From1 and drag nine Buttons from Toolbox and create common click event for each Button as shown bellow picture….. Code for Form1.cs …………………….. using System; using...

Sunday, 16 February 2014

Bind Json Result to Dropdown list in MVC4 with Country State City Concept

Bind Json Result to Dropdown list in MVC4 with Country State City Concept --sql query.................... create database JqueryExam use JqueryExam --create table county,state,city in database................... create table CountryDetails(CountryId int primary key,CountryName varchar(50) unique) create table StateDetails(StateId int primary key,StateName varchar(50)unique,CountryId int foreign key references CountryDetails(CountryId)...