Windows PowerShell is a new shell scripting interface built on the Microsoft .NET framework that enables IT Pros and .NET developers to control and automate the administration of Windows and applications. It uses a new admin-focused scripting language and features more than 130 standard command-line tools. Download Windows PowerShell 1.0 Getting Started Guide and Quick Reference sheet PowerShell blog Cheers!!! Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions ......
It took Italians to make this one! Pls click the link below to see the video. Superb Advertisement- shows popularity and respect to Gandhiji, A great ad.... Ironically from a non- Indian company!! And none the less This ad won the EPICA awards for best ad. http://www.epica-awards.org... Cheers!!! Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions | Dot Net Interview Questions | VB.NET Interview Questions | Oracle Interview ......
Metcalfe law is one of the fundamental laws of information technology. He explains his law with the example of Fax machine. He explained: there is no use of single or un-connected fax machine. When fax machine connected with other fax machine its values grows is about squire proportional to the no of connection. http://en.wikipedia.org/wik... Cheers!!! Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions | Dot Net Interview Questions | VB.NET Interview ......
I found nice discussion about SQL Server query optimization and tuning. I found it is quite helpful. http://www.microsoft.com/te... Cheers!!! Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions | Dot Net Interview Questions | VB.NET Interview Questions | Oracle Interview Questions ......
I have been selected as one of the top 20 BlogStars as part of Microsoft's BLOGSTARS, hunt for the best developer bloggers in India. Microsoft Bloggers Contest Winner. Check out the URL for more details : http://www.microsoft.com/in... Thanks to Microsoft and all the people who have been reading this blog and giving me your valuable comments. Cheers!!! Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions | Dot Net Interview Questions | VB.NET ......
AJAX v1.0 Beta 2 has been released. ASP.NET AJAX 1.0 Beta 2 ASP.NET 2.0 AJAX Futures November CTP ASP.NET AJAX Control Toolkit For more information http://forums.asp.net/threa... Cheers!!! Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions | Dot Net Interview Questions | VB.NET Interview Questions | Oracle Interview Questions ......
This article provides good way to maintain the state of password text box. http://aspadvice.com/blogs/... Cheers!!!... Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions | Dot Net Interview Questions | VB.NET Interview Questions | Oracle Interview Questions ......
Today i downloaded The Bloggers Guide to BizTalk. It is a good collection of blog entry related to Biztalk 2004/ 2006. Thanks Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions | Dot Net Interview Questions | VB.NET Interview Questions | Oracle Interview Questions ......
Here is one intersting post. We can create our own page drective. http://weblogs.asp.net/scot... Cheers!!! Mahesh ASP.NET Interview Questions | C# Interview Questions | .NET Interview Questions | Dot Net Interview Questions | VB.NET Interview Questions | Oracle Interview Questions ......
Few day back i got this error while i am trying to show message box from windows services. "It is invalid to show a modal dialog or form when the application is not running in UserInteractive mode. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application" To resolve this i set window services "allow interaction with desktop". also visit this link http://www.dotnet247.com/24... Might this helps others.. Cheers!!! Mahesh ......
Association, Aggregation, Composition update - Please read updated article on Association, Aggregation, Composition When we have only one relationship between objects, that is called Association. Aggregation and Composition both are specialized form of Association. Composition is again specialize form of Aggregation. Association is a relationship where all object have their own lifecycle and there is no owner. Let’s take an example of Teacher and Student. Multiple students can associate with single ......
There are some situations where we call a web service method having return type “void”. It is not good choice to wait for the response because it will not return any thing. There is “SoapDocumentMethod” attribute having property named “OneWay” which is by default false, means every time client call web method waits for the result. If we set “OneWay” to true then web services return HTTP 202 status to client which indicates to client that web server has started processing the message. public class ......