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 doContinue reading "MS Word special characters Regex"
Sticky Menu Bar code and example
This is a bit of a feature a lot of websites use and love, which is the Sticky Menu Bar. This could also be used for things like a cookie policy bar as well, but what ever the use it is a good feature. However I see some people add these with some terrible codeContinue reading "Sticky Menu Bar code and example"
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 detect JQuery UI collision position
Some may not know, but you can use the JQuery method position to pass an object with a lot of functionality. This properties of the position object can control where the item sits in the HTML, plus also the collision. This is where it collides with another DOM or the window of the page andContinue reading "How to detect JQuery UI collision position"
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.
Visual Studio Is Everywhere Now
Microsoft has finally listened to the public and release Visual Studio for all OS platforms YAY. Oh but it isn't really the full Visual Studio's you know and love. I have played with the new Visual Studio Code and now here I what I think.
VAT Number Validation
One bit of code I needed recently was a way to validate a user's VAT number, but for particular countries. Please see the reasons and method for validating a user's VAT for most of Europe.
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.