Check out http://web2.0awards.org/?short to know what I am talking about :)
The number one start page seems to be PageFlakes, number two is Googles IG and the third is our Microsoft Windows Live.
Little bit of googling showed that PageFlakes have been develeped using ASP.NET 2.0 and Microsoft Atlas.
Extract from the blog which I saw in http://omar.mvps.org/
Here's what Pageflakes say:
Pageflakes is your personalized Internet. You can add what you like and remove what you don't like - and it's totally simple. What you see on the site right now is just a selection of a few standard modules ("flakes", as we call them) that allow you to read blogs, do web searches, create a to-do list, check your Gmail account and read the latest news. Normally you'd have to go to a different web page for each of those things. With Pageflakes, you have it all on one page! And it's all free.
Note: You can now create public sites and share your page with your friends! Setup a personal site very easily and collaboratively work together
One of my office colleague recently asked me why we are not able to generate ALTER Table script from SSMS. If we right click on the table and choose "Script Table As" ALTER To option would be disabled or Greyed out. Is it a bug? No it isn't a bug. ALTER To is there to be used for generating modified script of Stored Procedure, Functions, Views, Triggers etc., and NOT for Tables. For generating ALTER Table script there is an work around. Right click on the table, choose "Modify" and enter into the design mode. Make what ever changes you want to make and WITHOUT saving it right click anywhere on the top half of the window (above Column properties) and choose "Generate Change Script". Please be advised that SQL Server would drop actually create a new table with modifications, move the data from the old table into it and then drop the old table. Sounds simple but assume you have a very large table for which you want to do this! Then it woul
Comments