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, 7 March 2013

Input a string in a Textbox and it Reverse string in C#

Input a string in a textbox and reverse the string to display it in another textbox using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Reverse {     public partial class Form1 : Form     {         public Form1()        ...

Wednesday, 6 March 2013

How to create auto generate field,unique key,Foreign key with two tables in Sql Server 2008

How to create Auto Generate,Unique key,Foreign key  with two tables in Sql Server 2008 create database test use test create table StudentInfo (RollNo int identity(1,1) primary key ,Name nvarchar(50) unique,Course nvarchar(100)NOT NULL) Create table Books ( SrNo int identity(1,1) primary key,BookName nvarchar(50),Quantity int,RollNo int foreign key references StudentInfo (RollNo)) ...

Friday, 1 March 2013

create validation on TextBox Field,CheckBox,DropDown using Java Script

How to create validation on TextBox Field,CheckBox,DropDown using JavaScript ************************************************************** <html> <head> <script type="text/javascript">     function val()      {         //alert("kush");         var un = document.forms['myform']['username'].value;        ...