Alex B. Clarke

Hi, I am a software developer specialising in Microsoft .Net technologies. This site is used to interact with, and contribute to development community.

Send mail to the author(s)  Contact me
Feed your aggregator (RSS 2.0)  Syndicate
On this page....
Categories
Archives
Blogroll
Blog Stats
Total Posts: 43
This Year: 5
This Month: 0
This Week: 0
Comments: 33
Misc
Theme by Alex B. Clarke.

Copyright © 2010 Alex B. Clarke. All rights reserved.

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

# Thursday, January 01, 2009

Scott Guthrie put together a very extensive list of Asp.Net resources:
http://weblogs.asp.net/scottgu/archive/2006/02/24/438953.aspx

A step by step to how to move membership tables from MS SQL express Edition to your database that you are used on your web site. The second part we will go in details to configure our asp.net web site
http://www.c-sharpcorner.com/uploadfile/dsdaf/104012006083052am/1.aspx

Access Database Provider
http://blog.krisvandermast.com/UsingAccessInsteadOfSQLServerForYourASPNETApplicationServices.aspx

Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Sunday, September 09, 2007
About 'tilde' (~) sign in the location element of the config.web
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Thursday, August 23, 2007
Why OutputCache directive using SqlDependecy="CommandNotification" fails to work with SQL Server 2005
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Monday, August 20, 2007
Output cache is not working when developing Asp.Net sites with Visual Studio 2005
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Friday, August 10, 2007
When designing a custom server control that has a property you can use Attribute to set the property default value
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Saturday, August 04, 2007
Using Profiles with Web Application Project
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Friday, July 13, 2007
When developing Asp.Net application with Visual Studio 2005 I use Web Application Project. However, this type of project does not allow using Web Site Administration Tool
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [1]
# Tuesday, July 10, 2007
Today I was playing with different options that can be set for State Management in Asp.Net
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Tuesday, July 03, 2007
When using Microsoft Visual Studio 2005 Web Deployment Projects I received this error: Parser Error Message: Could not load type 'SiteMaster'
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Sunday, June 24, 2007
It took me ages to figure out why Request.Cookies[“ASP.NET_SessionID”]  was always ‘null’ in my attempts to learn about its behaviour.

For “ASP.NET_SessionID” to materialise - Page.Session MUST be written to!

Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Thursday, June 21, 2007
I was installing dasBlog 1.9 and encounted the error...
Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]
# Sunday, June 25, 2006

When you install Visual Studio 2005 Asp.Net gets SQL Express as a default provider. This means that all your web project security - Roles, Membership, etc - is handled in aspnetdb on the local machine. To change from local machine to an SQL Server you need to make these modifications.


This is from Scott Guthrie's blog
How do I change the providers to use SQL Server Instead of SQL Express?

Filed under: Asp.Net  | Published by: Alex B. Clarke  | Comments [0]