Tuesday, June 28, 2011

Everything about SQL Identity

create table players
( id int identity(1,1) not null,
name varchar(50))
 
insert into players values('vaaibhav')
insert into players values('vaaav')
 
select * from players
 
dbcc checkident (players, noreseed)
 
dbcc checkident (players, reseed, 10)
 
insert into players values('vav')
 
select * from players
 
 
create table experts
( id int identity(2,2) not null,
name varchar(50))
 
insert into experts values('vaaibhav')
insert into experts values('vaaav')
 
select * from experts
 

Friday, May 20, 2011

FW: Twitter And Facebook Integration Articles

 
 
 
 
Twitter:
 
 
Facebook:
 
 

FW: Microsoft Useful Articles

 
Managed Extensibility Framework (MEF):
 
Threading :
 
AppDomain:
 
MSDN Magazine
 
 

Tuesday, May 4, 2010

Javascript Table Scroll Bar

To provide a table scroll bar in a web page which looks like
 
 
Use the underline code:
 
<style type="text/css">
<!--
.style2 {color: #000000}
-->
</style>
<div style="overflow:auto; height:100px;">
<table cellspacing="0" cellpadding="0" width="100%" >
        <thead>
                <tr  bgcolor="#cccccc" style="
                position:relative; top:expression(this.offsetParent.scrollTop);" >
                        <th nowrap><span class="style2">Header A</span></th>
                        <th nowrap><span class="style2">Header B</span></th>
                        <th nowrap><span class="style2">Header C</span></th>
                </tr>
        </thead>
        <tbody>
                <tr  style="border:1px solid #cccccc; "><td>aaaaaaaaaaaaaaaaaaa</td><td>b</td><td>ccccccccccccccccccc</td></tr>
                <tr><td>a</td><td>bbbbbbb</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
                <tr><td>a</td><td>b</td><td>c</td></tr>
        </tbody>
</table>
</div>
 
 
 

Tuesday, March 2, 2010

New Language Born

Looking forward to working and gain knowledge of Nimrod

Wednesday, November 25, 2009

Scott Hanselman .........Is the man!!!!!!!

I have been listening and looking at innovations by Google.
Recently they have entered limited edition of WAVE. Availability is by invitation only. Getting a invitation is another bog thing.

Looked all over the internet for a quick invitation and found that people online are sending requests and blogger/techie/people are replying back with invitations to people. But again there are limited invitation and a long list of people waiting.

As I frequently watch various people managed site for latest materials and articles. I thought why not ask them for an invitation. After a quick thinking I pinned it down to only one person Scott Hanselman, as rightly said by Tess - “The man, the myth, the legend” Scott Hanselman.

In today's world were email prevails over snail mail, the behavior on an average is still the same i.e replies are less often. But on the contrary there are people like Scott who do reply to mails. Before this day I was following Scott on a C2C kind of model i.e. hearing about him on sites and audio channels. Now I am going to follow him because of my own experience which is getting a reply for a 'wave invitation', no matter how insignificant it is, it still makes sense.

Thanks again to the one and only Scott Hanselman