|
|
|
ASP.NET |
|
Comments
|
By Dale on
Monday, January 17, 2011
|
|
|
|
Various things I've run into building sites in ASP.NET. Enhanced Validation, Tableless FormView, sneaky binding to page variables, ASP.NET Caching GET/POST.
|
 |
|
Comments (0)
|
More...
|
|
|
|
|
|
|
UK Hosting - Ideal for DotNetNuke (DNN) or ASP.NET + SQL Server 2005 Express |
|
Comments
|
By Dale on
Wednesday, October 03, 2007
|
|
|
|
Hosting is available for a limited number of sites on one of our UK dedicated servers. Its a windows 2003 box with a very small number of sites on the box. Perfect for hosting DotNetNuke (DNN) or any other ASP.NET site that uses SQL Server 2005 Express as the backend. Being dedicated means we can customise any settings such as the IIS extensions etc. Please contact us for more details.
|
 |
|
Comments (0)
|
More...
|
|
|
|
Check out the Castle Project |
|
Comments
|
By Dale on
Sunday, September 30, 2007
|
|
|
|
Ruby on Rails for .net! Castle in an open source project that provides a set of tools to simplify development in .net. I used Castle Monorail which provides an MVC framework and Castle ActiveRecord which provides a data mapper.
|
 |
|
Comments (0)
|
More...
|
|
|
MS Reporting Services |
|
Comments
|
By Dale on
Wednesday, July 25, 2007
|
|
|
|
Query running slow in SSRS but fast in Query Analyser: One reason for this is the fact that SSRS will run as many queries in parallel as it can given the size of the connection pool. On the surface this may seem like a very good thing except if the queries are complex and access the same data in which case they start locking each other out and can take longer to execute than if run sequentially. To change this click the datasource properties beside a dataset, then click "..." next to datasource then tick 'use single transaction'. Slightly odd place for it, especially since it actually applies to all datasets in the report.
Divide by zero: I had an odd experience today when I tried to prevent a divide by zero by using the IIF statement e.g. =IIf(Term2 <> 0, Term1/Term2, 0) however it appears to try and evaluate 'Term1/Term2' even if it 'Term2 = 0' very strange - so I had to use another IIf st ...
|
 |
|
Comments (0)
|
More...
|
|
|
.NET Notes |
|
Comments
|
By Dale on
Wednesday, April 04, 2007
|
|
|
|
A post to keep track of interesting bits of information regarding .NET development. Latest notes on backing up SQL Server 2005 databases from .NET code and creating / managing compressed filed from .NET code.
|
 |
|
Comments (0)
|
More...
|
|
|
|
|