As all developers know our best friend and worst enemy is the cache. You can make all your changes and be confident they will work, then they don’t change just when you want them to. It is great that you can clear your own cache, but how can you refresh all the users cache? HereContinueContinue reading “How to Force clear cache”
Category Archives: ServerSide Code
Good, Bad and the Ugly Commenting
I feel that it is important to comment your code and make sure that the next developer that uses the project knows what the hell you have done. However I have seen over the time I have been developing a lot of different ways people comment, so here are some of the dos and doContinueContinue reading “Good, Bad and the Ugly Commenting”
MS Word special characters Regex
That pesky Microsoft! They have to be different and mess us developers around don’t they. Have you ever noticed that Microsoft Word’s symbols look a bit different or act a little odd? Well it’s because they are not the standard char characters. This can be a pain for Regex and other things. So how doContinueContinue reading “MS Word special characters Regex”
How to test a SOAP Interface with SoapUI
SoapUI is a testing program to test any SOAP interface. This is a method of how to use SoapUI and test an interface.
How to Self Authenticate in .NET MVC C#
When you build your website application and you have a sign in section, most people use their own cookies to store the user information to validate the users is logged in, but with .NET MVC you can use the built in authentication to sign in, sign out and control there role.
Postcode Validation VB.NET
This is a shared function to determine if the format of a user postcode for the particular country is valid. This function covers most of Europe’s countries, but more can be added as needed.
Find Fully Qualified Azure SQL Database Name
This is a step by step guide on how to find you Fully Qualified Azure SQL Database Name in the new Azure Portal. This can be used for the Scale Azure SQL Database with PowerShell program.
Scale Azure SQL Database with PowerShell
In the pursuit to move to Azure we have had the need to scale the SQL databases. Your company may only have high or any traffic during certain times or even certain season. We need the best solution during working hours so this is what I have based it off.