-
Recent Posts
Archives
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
Categories
Meta
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
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/
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