NinethSense oWnZ mE!: Praveen’s drawing book

Choose a Topic:

Tue
29
Jan '08

Tafiti - Search from Microsoft

Tafiti, which means “do research” in Swahili, is an experimental search front-end from Microsoft, designed to help people use the Web for research projects that span multiple search queries and sessions by helping visualize, store, and share research results. Tafiti uses both Microsoft Silverlight and Live Search to explore the intersection of richer experiences on the Web and the increasing specialization of search.

http://www.tafiti.com/Original/default.aspx
'

T-SQL Trigger example

This sample code will copy a field (column) to another field when a new row is inserted or updated.

 
CREATE TRIGGER test /* CHANGE TO ALTER when you edit this TRIGGER */
ON tbltest
FOR INSERT, UPDATE /* Fire this TRIGGER when a row IS INSERTed OR UPDATEd */
AS
BEGIN
                     UPDATE  tblTest  SET  tbltest.testvalue=tbltest.name 
                     FROM INSERTED
                     WHERE inserted.id=tbltest.id
END
 
/* Eg: */
INSERT INTO tblTest (name) VALUES (‘ooooo’) 
 
/* Now CHECK the DATA: */
SELECT *FROM tblTest
'

Microsoft Visual Studio 2008 Free Books

Three interesting books are avilable for free -from Microsoft.
Check this book to know more and a download - http://csna01.libredigital.com/?urvs5cn3s8



1. Introducing Microsoft LINQ
2. Introducing Microsoft ASP.NET AJAX
3. Introducing Microsoft Silverlight 1.0
The CodeProject Microsoft Developer Network Official ASP.NET Forums Microsoft .NET Framework Community Microsoft Most Valuable Professional Kidoos forums Microsoft Visual Studio Developer Home Professional Information Technology Solutions Microsoft Research Home Kerala Microsoft Users Group Community Website