Archive for July, 2010

Get Recognized as MVP

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

ASP.NET MVC 3 – Preview 1 is here

Here are the major improvements in new version:

Improved View: New Add->View Dialog
New Razor engine
Improved Controller
Improved JavaScript and AJAX
Improved Model Validation

 
You can download it here.
More reading here at ScottGu’s blog - http://weblogs.asp.net/scottgu/archive/2010/07/27/introducing-asp-net-mvc-3-preview-1.aspx
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Web Farm Framework 2.0 Beta for IIS

The Microsoft Web Farm Framework (WFF) 2.0 for IIS 7 simplifies the provisioning, scaling, and management of multiple servers for administrators and hosting providers. Administrators can seamlessly provision multiple servers, deploy content to them, and use them to enable elastic scaling. Using the Web Farm Framework, you can also run operations on a server (or [...]

Leave a Comment

Enable/Disable foreign key constraints in SQL Server

– disable all constraints 
EXEC sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all"

– enable all constraints 
EXEC sp_msforeachtable @command1="print ‘?’", @command2="ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all"

Original link here.
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Fagan inspection

It is a process of trying to find defects in documents (Software – Eg: Technical Documents). It is used to evaluate the output of a process.

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

COCOMO – Constructive Cost Model

The Constructive Cost Model (COCOMO) is an algorithmic software cost estimation model developed by Barry Boehm. The model uses a basic regression formula, with parameters that are derived from historical project data and current project characteristics.
More info: http://en.wikipedia.org/wiki/COCOMO
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Web Storage and HTML5

Web Storage and DOM Storage (Document Object Model) are web application software methods and protocols that are used to store data in a web browser. Web storage supports persistent data storage, similar to cookies, as well as window-local storage.
Web storage is being standardized by the World Wide Web Consortium (W3C). It was originally part of [...]

Leave a Comment

Cisco VPN client on Windows7

I was not able to install Cisco VPN on my new Windows7. After a lot of search, I got this fix from this blog. Edited a bit the way I installed.
 

Download the Citrix DNE Update and install it.  - 1)  winfix.exe 2) dneupdate.msi

Reboot

Make sure you have Cisco VPN Client 5.0.4.0300 (or newer, if available) [...]

Leave a Comment

New Social API Toolkit for .NET‏

This Web Application Toolkit provides a generic “Social Networks” API that allows connecting your Web application with different social networks and managing them through one entry point with a consistent set of methods. In the Toolkit you’ll find examples of how to use the Social Networks API provided to connect a Web application with Facebook [...]

Leave a Comment

iPhone Programming For Windows

This is one of the option for Windows only developers to do iPhone development – using Dragon Fire SDK.
Read this for more information: http://www.drdobbs.com/cpp/225702387;jsessionid=CF1MDQYQHN5YHQE1GHPCKHWATMY32JVN
This SDK kit contains a cross-platform Library and an iPhone Simulator.
Let us wait and see its future
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment