• This is the home page widget area. You can use this space to add an introductory message to your blog with a Text Widget or add any other widget here.

Blog this blog

Post blog using the blog this feature in IE7

Load Testing a WordPress site

Hi guys, in this blog I am going to cover how to load test a web application. In this case its a wordpress application residing on my local server. You can also set up wordpress locally by downloading it from http://wordpress.org. So we must start our load test. Open visual studio and add a new … Read more

How to save Load Test reports in SQL Server

Hey Guys, recently I was working on Load Test automation using VS. By default VS stores all your Load Test report in SQLExpress but I wanted to have them stored on SQL Server. I digged hard and found out that following some simple steps it can be attained. I thought of sharing the same idea … Read more

Keyword search in SQL Server

Hello guys, For those who ever felt the need to search for a keyword in the entire DataBase, I have this following script. Run this PROC on the DataBase you wish to make your search on. It accepts a search string as input parameter, goes and searches all the user created tables (System tables are … Read more

Microsoft to share .NET code

Microsoft has announced that it will release the source code for the .NET Framework with .NET version 3.5 later this year. This would essentially be in “read-only mode,” meaning that you can view the source code for reference and debugging, but you cannot modify or re-distribute the code. This is Microsoft’s most restrictive shared-code license … Read more

Context Menu in Win Forms

Problem: How to add a context menu to a control and then add an event handler to it? Solution: ContextMenu refreshPopUp = new ContextMenu(); refreshPopUp.MenuItems.Add(“[context menu text]“, new EventHandler([method name])); refreshPopUp.Show([control], new System.Drawing.Point(X, Y)); // Write the code for the event handler private void methodName(object sender, EventArgs e) {      do something; } Danish Khan Ramp … Read more

Follow

Get every new post delivered to your Inbox.