Category Archives: Uncategorized

The application which this project type is based on was not found

If you have an MVC2 application like the MovieApp application in MSDN, when you open this type project on VS 2012 (good luck) you will see the error message “The application which this project type is based on was not … Continue reading

Posted in .Net, Uncategorized | Tagged , , | Leave a comment

For C# beginner

C# Fundamentals: Development for Absolute Beginners is a good resource for C# beginner. Watch the video and download the code.

Posted in Uncategorized | Leave a comment

Agile Application Lifecycle Management – A Case Study

Author: Chan Ming Man (Visual C#)   Chan Ming Man is currently the Senior Manager at a strategic agency under purview of the Malaysian Ministry of Science, Technology and Innovation. With more than 20 years of experience in the IT … Continue reading

Posted in Uncategorized | Leave a comment

ARR cannot pop up the authentication dialog‏

When we configured IIS application to Windows Authentication without going through the ARR (Application Request Routing) the dialog will pop up. How can I make ARR pop up this authentication dialog like the one below? Any genius know the answer?

Posted in Uncategorized | Leave a comment

Web Services Error – Could not create type ‘xxxxx.xxxxxxx’ -asmx

If you see the error “Could not create type” … mine is “Could not create type ‘IPMSDBWebService.Service’ “. Most likely your asmx.cs file is in root folder of the web application like the one shows below. Create a folder name … Continue reading

Posted in Uncategorized | 1 Comment

The web server process that was being debugged has been terminated by Internet Information Services (IIS). This can be avoided by configuring the Application Pool ping settings in IIS. (The missing step)

When you see the above error same as the picture display below. Click the Help button then it will link you to “Error: Web site worker process has been terminated by IIS” ( http://msdn.microsoft.com/query/dev10.query?appId=Dev10IDEF1&l=EN-US&k=k(VS.DEBUG.ERROR.WEB_SERVER_PROCESS_TERMINATED);k(DevLang-CSHARP)&rd=true). When come to step 5 “In … Continue reading

Posted in Uncategorized | Leave a comment

DevFabric != Windows Azure

When you create a cloud application in Visual Studio you might connect to your localhost for database despite you are using SQL Server or SQL Server Express. For me, I created the cloud application and read from local database and … Continue reading

Posted in Uncategorized | Leave a comment

HTTP Error 500.15 – Internal Server Error (The requested page cannot be accessed because the related configuration data for page is invalid)

The error screen likes the one below.   This is most likely you have configured your existing Web Service project to run in .NET Framework 4.0 Web Site. For us we have removed the whole sectionGroup section and it works … Continue reading

Posted in Uncategorized | Leave a comment

Threading and Parallel Programming in C#

Threading in C# by Joseph Albahari covered Parallel Programming http://www.albahari.com/threading/

Posted in Uncategorized | Tagged | Leave a comment

Silverlight WCF RIA Domain Service Class – CRUD (Part 5 Delete Entity – Row)

This sample is to Delete the rows from the entity. It is quite similar to Update if you look closely at the code. 1. Add a button control name btnDelete. <Button Content=”Delete” Height=”23″ HorizontalAlignment=”Left” Margin=”218,155,0,0“ Name=”btnDel“ VerticalAlignment=”Top” Width=”60″ Click=”btnDel_Click” /> … Continue reading

Posted in Uncategorized | 2 Comments