Sunday, September 13, 2015

5 Important Rules in Website Design



When it comes to your website, extra attention should be paid to every minute detail to make sure it performs optimally to serve its purpose. Here are seven important rules of thumb to observe to make sure your website performs well.

1) Do not use splash pages

Splash pages are the first pages you see when you arrive at a website. They normally have a very beautiful image with words like "welcome" or "click here to enter". In fact, they are just that -- pretty vases with no real purpose. Do not let your visitors have a reason to click on the "back" button! Give them the value of your site up front without the splash page.

2) Do not use excessive banner advertisements

Even the least net savvy people have trained themselves to ignore banner advertisements so you will be wasting valuable website real estate. Instead, provide more valueable content and weave relevant affiliate links into your content, and let your visitors feel that they want to buy instead of being pushed to buy.

3) Have a simple and clear navigation

You have to provide a simple and very straightforward navigation menu so that even a young child will know how to use it. Stay away from complicated Flash based menus or multi-tiered drop down menus. If your visitors don't know how to navigate, they will leave your site.

4) Have a clear indication of where the user is

When visitors are deeply engrossed in browsing your site, you will want to make sure they know which part of the site they are in at that moment. That way, they will be able to browse relevant information or navigate to any section of the site easily. Don't confuse your visitors because confusion means "abandon ship"!

5) Avoid using audio on your site

If your visitor is going to stay a long time at your site, reading your content, you will want to make sure they're not annoyed by some audio looping on and on on your website. If you insist on adding audio, make sure they have some control over it -- volume or muting controls would work fine.

Friday, September 11, 2015

Application Service Providers and Hosting


Application service providers (commonly referred to as ASP's) have quickly sprouted onto the web hosting scene in effort to provide businesses with new and innovative services. The term ASP should not be confused with Microsoft Corporations software application.

The number of applications provided through the ASP model is growing. Accordingly, there is a growing business of companies developing software for the ASP marketplace. What sorts of applications are being developed? As remotely-hosted applications can provide cost-effective access for businesses to unique software, many of the applications are designed to be of occasional use in terms of use. Others are geared towards using group connectivity provided by through the Internet to provide an application that is flexible. 

 

ASP's have created software programs to handle various business functions as materials management, human resources, financial management, and e-commerce transaction services. 

The variety of solutions provided by ASP's is vast. Many ASP's are doing great business in meeting operational needs of companies across different industries and business functions. There are a number of technical and business issues currently addressed by ASP's to develop and enhance system applications. 



A major advantage for businesses in seeking ASP services is that they provide an opportunity to reduce costs and increase efficiencies. Companies can have access to a wider-range of software products with the possibility of paying less than an outright purchase through usage charges. This allows businesses to access applications that can service particular business needs so companies can focus on their core operations. Furthermore, ASP's are developing new software that can provide business solutions to operating issues not previously addressed through PC-based software. ASP's also remove many of the technical administrative and maintenance issues associated with software by providing real-time upgrades, remote hosting, remote dial in customer support and overall software management. 

Web hosting companies are involved in the development of applications – however, many of the hosting companies serve to provide network management and serve the application remotely to users. In providing ASP-related services, these companies are essentially AIP's (application infrastructure providers.) 

For mainframe web hosting applications, ASP service providers are pioneering a new way to host and maintain business applications.

Tuesday, September 8, 2015

Mistakes To Avoid When Using Web Templates



Website templates are very affordable and they save you a lot of effort and time when you want to create a new layout for your website. However, a lot of people make mistakes in the process of choosing and using a web template and end up with something that was unlike the image they had in mind. Here are some guidelines to help you avoid those mistakes.



The first obvious mistake you should be aware of is using a template that is very popular. If many people use the same template, your website will not appear unique at all and your credibility as a solid, different website will be tarnished. In other words, you will appear generic just like your next-door neighbours.

To whole point of using a web template is to save time and effort. You just change the title and appropriate details and you're done. The biggest mistake one makes is to customize the template beyond recognisation. While that may be good in the sense that you're creating a unique graphic, you're defying the very purpose of using a web template -- saving time and effort.

However, on the opposite side, if a template you purchase is suitable but some changes must be made to suit your site's theme, then you will have to take some time to make the changes. For example, you can find a very nice template that suits your hobby site except the original designer has put an image of stamps in the header. You can find images of garden plants and spades to replace the stamps for your gardening hobby site. However, do only make the necessary changes and don't redesign the whole template.

In some circumstances, some people simply make the wrong choice of templates. This is a very subjective issue but you have to be careful in selecting templates to suit your audience. Do not choose templates just because they are pretty, choose them because they serve your purpose.

Tuesday, September 1, 2015

Javascript Popups Box



javascript has three types of popup box 1)alert box  2)Commfirm box and 3)prompt box

Alert Box



An alert box is often used if you want to make sure information comes through to the user.

alert command

alert('Hello Pakistan');

javascript is a case sensitive language so be careful for typing. if you are type (Alert) so it's wrong in javascript here

javascript considered diffrent meaning

 alert("hello pakistan"); different meaning.
 Alert('Hello Pakistan'); different meaning.

<!DOCTYPE html>
<html>
<head>
     <title></title>
</head>
<body>

     <p>Click the button and see how alert in web browser</p>

     <button onclick="myFunc()">Show Alert</button>

<script>
function myFunc() {
    alert("Hello Pakistan!");
}
</script>

</body>
</html>

Confirm Box

A confirm box is often used if you want the user to verify or accept something. When a confirm box pops up, the user will

How to use Conform Box

<!DOCTYPE html>
<html>
<head>
     <title></title>
</head>
<body>

<p>Click the button and see how Confirm box in web browser</p>

<button onclick="myFunc()">Show Confirm </button>

<p id="demo"></p>

<script>
function myFunc() {
    var x;
    if (confirm("Press a button!") == true) {
        x = "You pressed OK!";
    } else {
        x = "You pressed Cancel!";
    }
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>

Prompt Box



A prompt box is often used if you want the user to input a value before entering a page. When a prompt box pops up,

How to use Prompt Box

<!DOCTYPE html>
<html>
<body>

<p>Click the button and see how prompt box in web browser</p>

<button onclick="myFunc()">Use prompt box</button>

<p id="demo"></p>

<script>
function myFunc() {
    var person = prompt("Please enter your name", "Harry Potter");
   
    if (person != null) {
        document.getElementById("demo").innerHTML =
        "Hello " + person + "! How are you today?";
    }
}
</script>

</body>
</html>

Swift Start Here