Tuesday, October 16, 2012

Introduction To ASP.NET

ASP.NET INTRODUCTIONASP.NET is a web application framework developed and marked by Microsoft to allow programmers to build dynamic websites, web application  and web services. It was first released in January 2002 with version 1.0 of the .NET framework, and it is successor to Microsoft’s Active Server Pages(ASP) technology. ASP.NET  is built on the Common Language Runtime(CLR) allowing programmers to write ASP.NET code using any supported .NET language.Advantages Of ASP.NETSeparation Of Code From HTML :-        ...

Monday, October 15, 2012

About-Us

...

Friday, October 12, 2012

Asp.Net

Welcome to asp.net pa...

Wednesday, October 10, 2012

SQL QUERIES

writing queries in sql server  (2005/2008/R2 Edition)/*creating Database Syntax*/Create Database Sample/*Create Table Syntax*/create table Student(Sno numeric,Sname varchar(25),Sage numeric,Sdob datetime,Splace varchar(25))/*Inserting Values in Table*/insert into student values(103,'dhas',25,11/26/1990,'Tambaram')/*select Table*/select * from student/*Drop Table Syntax */drop table student/*Truncate table Syntax*/truncate table student/*Delete table syntax */delete from student/*update table*/update student set sname='amal' where sno=101/*Primary...