Top 5 best Web hosting by price ,customers support, reviews

by daz 2/6/2010 7:54:00 PM

This is the top 5 best web hosting companies  and domain registration in February 2010. We have reviewed and selected 5 best companies from the world top hosting services combine with domaine registration. We gather the information from client that have been with those companies for over 5 years. All the hosting we reviewed are reliable , and are supporting Asp.net 3.5, MSSQL,MySQL, Apach and PHP ,Webmail. In general they have a Windows and Linux base plan.

Rank Company
1st WebHostForAfrica.com 

This company offer 24h/7 suppport, base in the US they are very cheap and for each client they offer $1 to charity organisation for the world hunger eradication. Enough space for developers, private small and medium size company.WebHostForAfrica.com. They are cheaper than godaddy but seems to have the same customer support level. 

  • Serving International customers.
  • Cpanel Control Panel
  • Fantastico Script Installer
  • Advance hosting at affordable rate.
  • Best support service and overall best host
  • 2nd  GoDaddy.com

     Nice customer support.

    Reseller hosting available.

     
    3rd  http://www.hostmonster.com/  Reseller hosting available.
    4th  http://www.hostgator.com/  Monthly billing cycle available @ $8.95
    5th  http://www.Dailyrazor.com/  very good on hacker and malicious software tracking

    Tags:

    zongoVideo Control: youtube video in asp.net,C# like media player

    by daz 12/23/2009 9:29:00 PM

    This is a Youtube like Control i developped in C#, asp.net 3.5  for a Client .  The idea was to have a control madia player like that require less code. So , pretty slick , what you need is to create a database table to hold the youtube Urls. No need to save the youtube embeded code in your DB. I provide a link demo View the Demo site

    Well, not enought  time to complete the article ,so i also included the full source code for you to download. If you have any issue, please contact me throught the contact form.

    <div align="center" >   

    <

    asp:ScriptManager ID="smVideo" runat="server"></asp:ScriptManager> table><tr><td><br /></td> td valign="top" ><asp:UpdatePanel ID="UpdatePanel1" runat="server" updatemode="Conditional" > <<<ContentTemplate>

    Choose a video

     

    <asp:DropDownList Width="60%" ID="cmbPlaylist" runat="server" AutoPostBack="True">  <asp:ListItem Selected="True" Value="yoFezM0pw4Y">FilsDuFaso</asp:ListItem> <asp:ListItem Value="5QlAxznkj5I">FilsDuFaso</asp:ListItem></asp:DropDownList> <br /><br /><asp:Literal ID="Literal1" runat="server"></asp:Literal> 

     </ContentTemplate></asp:UpdatePanel></td> <td></td></tr></table> 

     

    Copyright 2009

    http://DavidZ.afriklink.com

     

     

    </div>

     

    The CS file looks like

     private int width = 350;  

    private int height = 300;

     

    protected void Page_Load(object sender, EventArgs e)

    {

     

    if (!IsPostBack)

    {

    int idex = 1;

     

     

    int auto = 1;

    ddlPlaylist.SelectedIndex = idex;

     

     

    // generate script on page load

    Literal1.Text =

    ZongoVideoScript.Get(ddlPlaylist.SelectedValue, auto, width, height);

    }

     

     

    else

    {

     

     

    // generate script on page postback

    Literal1.Text =

    ZongoVideoScript.Get(ddlPlaylist.SelectedValue, 0, width, height);

     }

    View the Demo site

    Download the files ZongoVideoSite.rar (17.90 kb)

    View the Demo site

    Download the files ZongoVideoSite.rar (17.90 kb)

    Sum Table Column using JQuery

    by daz 11/12/2009 7:27:00 PM

    Jquery library helps a lot. It simplify and decrease coding time for all develppers

    Here is how you can sum column of a Html table that uses tbody, thead, tr and td or anything

    The first and all you need an ID of your tag. either a table or thead...td

    <table>

    My headers goes here

    thead  > <tr><th >&nbsp;</th></thead>

     the header is Outside of my tData . Thus i can sum all the data in colum. Else if you have the header WithHeader = true when u call the function in (**) 

    <script type="text/javascript">  

    pretty easy.. If U have problem figuring it out should me an email.

    $(document).ready(

    function() {

    $(

    "#ProspectIn").html(JquerySum("firstData", 3, false));

    $(

    "#ProspectOut").html(JquerySum("firstData", 5, false));

    $(

    "#Prospect").html(JquerySum("firstData", 7, false));

    $(

    "#Client").html(JquerySum("firstData", 8, false));

    });

     

    </script>

    (**) 

     

    function JquerySum(tagId, columnIndex, WithHeader ) {

     

    var sum= 0;

    $(

    "#" + tagId+ " tr" + (WithHeader ? ":gt(0)" : ""))

    .children(

    function() {

    sum+= parseInt($(

    this).html());

    });

     

    return sum;

    }

    "td:nth-child(" + columnIndex + ")")

    .each(

    "td:nth-child(" + columnIndex + ")")

    .each(

    function() {

    sum+= parseInt($(

    this).html());

    });

     

    return sum;

    }

     

     

    Tags:

    About the author

    Name of author
    DavidZ
    .Net Programmer
    E-mail me Send mail

    Calendar

    <<  March 2010  >>
    MoTuWeThFrSaSu
    22232425262728
    1234567
    891011121314
    15161718192021
    22232425262728
    2930311234

    View posts in large calendar

    Recent comments

    Authors

    Categories


    Disclaimer

    The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

    © Copyright 2010

    Sign in