September 11, 2008 / by Rimu Atkinson / APPLICATION, ASP.NET, LINUX, Uncategorized / 0 comments
Surprisingly small amount of documentation on the net about this…. When using the exec command, don’t expect any of your ruby code after it to execute! This is because the command you run using exec replaces the currently executing script! Use the system command instead, or the “ trick
Read more
Getting ASP.Net 1.1 running on linux – a trap for Ubuntu 9.04 users
April 15, 2010 / by Rimu Atkinson / ASP.NET / 0 comments
On 9.04 when you install mono from the repos by following these instructions, (and opt not to install ASP.Net 2.0 and just go with the default of 1.0) then you end up with a mis-configuration of the web server – it’s looking for the 2.0 version of the .Net framework when all you have is […]
Read more
asp.net: huge difference between DataView.Table and DataView.ToTable
November 16, 2008 / by Rimu Atkinson / ASP.NET / 0 comments
Both DataView.Table and DataView.ToTable return a DataTable from a DataView. The difference is that .Table gives you the underlying data, with no changes from the dataview’s sorting or filtering. ToTable on the other hand, gives you the data in the dataview after filtering and sorting! This is the sort of thing I’ve come to expect […]
Read more
ruby gotcha: exec command
September 11, 2008 / by Rimu Atkinson / APPLICATION, ASP.NET, LINUX, Uncategorized / 0 comments
Surprisingly small amount of documentation on the net about this…. When using the exec command, don’t expect any of your ruby code after it to execute! This is because the command you run using exec replaces the currently executing script! Use the system command instead, or the “ trick
Read more