Andrew, the founder of Didsbury Design has now successfully passed the Microsoft Certified Technology Specialist (MCTS) for SharePoint 2010 exam. This means we are now much better equipped to take on SharePoint projects and to advise others on similar work.
We are aiming to achieve more certifications throughout 2011 to help us grow and be able to assist our clients in a broader area of subjects.
Please don’t hesitate to get in touch if you have any projects coming up you wish to discuss.
We are proud to announce that our web hosting is now carbon neutral. Below is a description from our award winning provider.
As a responsible hosting provider, we have recognised the need to develop carbon efficient hosting solutions to reduce our environmental impact.
Data centres, which are necessary for housing servers and providing hosting services, use a large amount of energy and emit tonnes of CO2 every year.
In fact, data centres worldwide are expected to generate 533 million tonnes of CO2 by 2020 (Carbon Trust).
Becoming carbon neutral we are now a carbon neutral business, working with one of the world leaders in carbon management to offset carbon emissions.
In addition, we have achieved PAS 2060 certification – making us the 1st certified carbon neutral hosting company in the UK:
100% carbon neutral office and data centres
100% carbon neutral for all current client hosting solutions (free of charge)
100% carbon neutral for all new client hosting solutions (free of charge)
What are canonical links used for
The Canonical link element was introduced in 2009 to help cleanup duplicate pages on search engines.
The html code is shown below and it basically informs search engines of the primary URL for that page. This means any alternative entry points to that page will not be picked up as duplicate content. This HTML must be specified in the HEAD section of the document.
After a few months of discussions and ideas being passed around we are now finally in the final stage of our re-brand.
Didsbury Design is the new name for Zero7Web. We will be offering the same high quality services as before, with extra services being added.
Website Hosting Upgrade
We have invested in a new, faster, even more reliable web hosting provider which means our clients websites will load even quicker than before! We can pass on our providers 100% network uptime guarantee and we are also proud to announce our web hosting is the first in the UK to be carbon neutral.
The hosting upgrade will not affect prices for current clients, although we will start to bill for domain names separately from now on which still keeps our prices very competitive.
Windows .NET 4 / MVC2 Support
We can now support additional languages for web development including Microsoft SQL, Classic ASP and the .NET framework including version 4.0.
We hope you like the new website and we very much look forward to working with you in the future.
I thought I would do a quick post about Creating and more importantly Deleting cookies in ASP.NET as it’s not quite as obvious as it may seem with the misleading .Remove() method which doesnt do as you would expect.
I hope this helps someone get started with cookies if your just getting started with the .NET framework.
Creating a cookie
This is a basic example of how to create a cookie in ASP.NET C#
//Create a new cookie, passing the name into the constructor
HttpCookie cookie = new HttpCookie("MyCookie");
//Set the cookies value
cookie.Value = "CookieValue";
//Set the cookie to expire in 1 day
cookie.Expires = DateTime.Now.AddDays(1);
//Add the cookie
Response.Cookies.Add(cookie);
Deleting a cookie
When deleting a cookie all you need to do is amend the HttpCookie object so it has an expiry date in the past, then re-save the cookie to push the new value to the client.
NAB Communications approached us for a website to promote their services and to help to reach new clients. The site has it’s own basic Content Management System and has been built to a custom specification.
We will now be keeping a close eye on the sites traffic and we will be working closely with Deborah to help her achieve the online success she deserves.
Google has added the Winter Olympics slopes to its Street View , allowing people to see the same view down a mountain as a skier about to push off in their quest for gold.
Engineer Dan Ratner explained: “In typical scrappy Google fashion, we were able to put this together over a few weekends. We used extra pieces from our Street View cars, some 2×4s, some duct tape, and a lot of extra hard drives.