Wednesday, October 28, 2009

INTERVIEW QUESTION

.Net Technologies Interview Question
Please follow the link bellow.
http://www.itworld2.com/frmIQDNet.aspx

Friday, October 16, 2009

How to Insert data into a temporary table with the help of SQL stored procedure

This Stored Procedure shows how to create temporary table and insert data into it from another table
--****************************************************
Create procedure sp_tempTable
as
create table #tempTable(ID int,Symbol nvarchar(50)) -- Create #tempTable
insert into #tempTable
select Max(ID) as MaxId,Symbol from Sheet1 Group by Symbol --Insert data from - --Sheet1 table
select * from #tempTable
drop table #tempTable
--**************************************************
--To execute
--exec sp_tempTable

Saturday, October 10, 2009

What is ASP.Net MVC?

Hi all,
Since last month i'm getting busy with some another work so hope i will post new thing after a month or two. Now i am tryyyyyyyyyy... to learn ASP.Net MVC ..... its totally new for me.
How about you ...?

To learn I will refer you .... http://www.asp.net/Learn/mvc/tutorial-01-cs.aspx site..
So enjoy .....