-
Recent Posts
Recent Comments
- Dann on Using TortoiseGit with GitHub– A checklist rather than tutorial
- Andrew Vit on Using TortoiseGit with GitHub– A checklist rather than tutorial
- Dann on Asp.Net MVC3 Razor and RESX Localisations/Localizations
- Leniel Macaferi on Asp.Net MVC3 Razor and RESX Localisations/Localizations
- Leniel Macaferi on Asp.Net MVC3 Razor and RESX Localisations/Localizations
Archives
Categories
Meta
Author Archives: Dann
Using TortoiseGit with GitHub– A checklist rather than tutorial
Install msysGit http://code.google.com/p/msysgit/ Create a SSH key using Bash (id_rsa and id_rsa.pub) Install TortoiseSVN Use plink Use puttyGEN, which comes with TortoiseGit, to create a Putty private key from id_rsa like so: puttyGen –> Conversions –> Import Key –> … Continue reading
Asp.Net MVC3 Razor and RESX Localisations/Localizations
I was just applying for a small two week contract that was based on Localisation. This is the work I did to give myself a quick refresh. It reminded me on how well Asp.Net MVC3 works with RESX localisations. As … Continue reading
GoDaddy vs Umbraco – Access to Umbraco.config is denied
If you got the error along the lines of …./App_Data/Umbraco.config - Access is denied. Add the following into your web.config <system.web> <identity impersonate=”true”/> </system.web> It says to do that in the error anyway
Start of a new site: safetaxi.info
This is a pre release plug for safetaxi.info – a find a taxi service in London for people on the run. Not up yet, but when it is..oooohh http://safetaxi.info
Crashing Visual Studio after debugging ASP Classic
I hate ASP classic. I hate it with a passion. AND THEN when your browser crashes every time that you go to debug it, you start building muderous tendancies. Anyway, Found a solution. Hot fix to VS 2008 that fixes … Continue reading
Web Deployment with VS2010 and IIS7
Have watched a great presentation today from Scott Hanselman from the MIX 10 conference. YOU MUST/NEED TO WATCH THIS! -> Scott Hanselman presents the IIS Web Deploy There were a few great ideas built in to his story, such as … Continue reading
Posted in Uncategorized
Leave a comment
Converting MVC 2 RC to MVC 2 RTM
Ok, this is more of a hack than a true conversion, but I haven’t noticed the difference… yet. Remember to back up what you’re not willing to lose! Remove your MVC project from your solution. Don’t delete, just remove. Then … Continue reading
Arrh! Invocation Error! NHibernate
I had started to get this annoying error when I ran my web app: Exception has been thrown by the target of an invocation. Simple fix. Add back those virtual keywords onto my POCOs that somehow disappeared. public int Id … Continue reading
FTP Publishing on Windows Server 2008 with Amazon EC2 – Rough guide
AS A NOTE – WEB DEPLOY IS MUCH BETTER THAN FTP PUBLISHING – Just letting you know This is my quick guide ( i.e. how i did it) on how to get FTP Publishing working on a Amazon Instance Website. … Continue reading
Fiddler, Visual Studio and Localhost working together!
I found two new tricks to make all these things work together for debugging a Visual Studio Asp.Net web project on Localhost. Here they are: Disable IPv6 – This stops the “Fiddler: No connection could be made because the … Continue reading
Posted in Uncategorized
Leave a comment