gwycon.com
Silverlight, WPF and C# .NET development
User NamePassword

16
Feb

There are lots of things to consider when setting up a new website. So we’ve outlined just a few that we think are key and which you really need to keep in mind when setting up a new site. So whether you’re setting the site up on your own, or using a web designer, just make sure you’ve got these covered!

Objectives and Target Audience

Your objectives and audience will dictate the look and feel of your website. So think carefully about what kind of web presence you want. Take into account all your current needs and requirements, and factor in any future expansion you’ve got planned. Give careful consideration to the purpose of your site. What are you trying to achieve, what are your main aims and objectives? Maybe you’re selling a product, or service, or using your site to market an off-line business. Your objectives and your target audience are going to drive the look and feel of your site, so make sure you know what they are before you start building your site. That way you can make sure your website achieves them all!

Website Design

Give careful thought to the design and structure of your website. Do you need a content management system (CMS)? Even a small website can benefit from a good CMS allowing you to easily develop and expand your website – it can be difficult to update static sites, and a good CMS can save you money in the long term. continue

Category : Misc | SEO | Web Design | Blog
5
Oct

Ajax is the new buzz word floating around, but what exactly is it? Basically, it means you can send requests back to the server in the background and your web page can carry on happily doing other things – it doesn’t have to wait for a response to the request. Usually, when you click on something on a web page you have to wait for the whole page to be reloaded whilst a response is returned from the server. Not anymore with Ajax however! Using something called the XMLHttpRequest (or simply, XHR) requests can be sent to the server, and ONLY relevant portions of a web page need to be updated accordingly.

This may not sound like much but the benefits to the user are not having to wait around for the page to be constantly reloaded every time a link is clicked on, giving web pages much more of an interactive feel to them, similar to a desktop application. One of the most common examples I have seen Ajax implemented is in the backend of content management systems (CMS), where the user can set various options by dragging elements around rather than just by clicking on standard links.

However, there are numerous disadvantages to Ajax simply because at its core it makes heavy use of JavaScript, and of course the user has to have this enabled in the browser or it won’t work. This is the same old problem with using JavaScript, it is a powerful language but not 100% visible if turned off in the browser. See the Wiki Ajax page for the full low down on this new technology.

Category : Ajax | Blog