-
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
Monthly Archives: October 2009
VS 2010 Beta 2 is out and MSDN new look
Visual Studio 2010 Beta 2 is out. Download the Express Edition here: http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx Visual Studio 2010 and .NET Framework 4 Beta 2 Walkthroughs: http://msdn.microsoft.com/en-us/vstudio/dd441784.aspx MSDN website http://msdn.microsoft.com has a new look. Please share it out if you know something useful but not … Continue reading
Posted in Uncategorized
Leave a comment
Solving error: System.Data.SqlClient.SqlException: Login failed for user ‘IIS APPPOOLDefaultAppPool’ in IIS 7
1. Click Windows Start button -> Run… (http://www.howtogeek.com/howto/windows-vista/enable-run-command-on-windows-vista-start-menu/) 2. Type inetmgr 3. Click Application Pools 4. Click DefaultAppPool 5. Click Advance Setting… 6. Change the Identity to the login account that you would like to use. Resources: http://www.velocityreviews.com/forums/t107698-aspnet-gt-sql-server-impersonation-not-working.html
Posted in Uncategorized
Leave a comment
Solving the error “provider: SQL Network Interfaces, error: 26 – Error Locating Server/Instance Specified” for Webpart, Membership and others aspnetdb related components in 64 bit Windows
In normal case some developers might got to change machine.config at C:WINDOWSMicrosoft.NETFrameworkv2.0.50727CONFIG to try to solve the abort error. Beware in a 64 bit machine there are 2 machine.config files, one in C:WINDOWSMicrosoft.NETFrameworkv2.0.50727CONFIG and another one in C:WINDOWSMicrosoft.NETFramework64v2.0.50727CONFIG. This might … Continue reading
Posted in Uncategorized
Leave a comment
Back to basic (Part 4): Delete from LINQ to Entities
This is continue from part 3 (Update from LINQ to Entities). This part is the last for the entire CRUD. The code will work for both .NET Framework 3.5 or 4.0. The complete code. { //Define an entity … Continue reading