Posted by
webinfinite
Jan
24
If you haven’t gotten Dropbox, get it now. Dropbox is a backup tool that lets you sync your files between multiple computers. You simply install the software on all computers you want to sync your files on. Then simply drag and drop your files into a folder that Dropbox software creates on your desktop and voila the files are now also on your other computers. No more need for a usb stick.
Need another reason to get it? Consider this situation, all you computers crash (days, months, years after installing Dropbox) and you loose all your work, all you have to do is download Dropbox again on your new operating system and the files are there again just like before. Visit Dropbox here and get 2GB free plus bonus 250mb for total of 2.25GB free.
Get a sense of safety by using one of my new favorites programs, Dropbox.
Posted by
webinfinite
Jan
4
Are you having issues implementing your Google map API into Wordpress?
Problem
Wordpress inserts <p> tags to every line and therefore your JavaScript does not execute the way it should.
Solution(kind of)
Insert <?php remove_filter (‘the_content’, ‘wpautop’); ?> at the beginning of <?php the_content(); ?> of your template file. This will remove <p> tags on every page of your blog. This solution is not great however your Google Map API JavaScript will work.
Best Solution
Download the PHP Execution plugin and install it in the plugins folder. This plugin allows you to execute php code in your posts/pages. Once you have installed this plugin, go to your post/page and insert <?php remove_filter (‘the_content’, ‘wpautop’); ?> at the beginning or anywhere before the map JavaScript code. Then insert your Google maps API JavaScript. Your code should work as it did on a regular html page without affecting the format on other pages of your blog.
Posted by
webinfinite
Dec
4
If you’ve been searching online for a wordprss mu themes and plugin, I am sure you have realized that there aren’t many sites that offer good content. I having been doing extensive searching while I build a Intranet using Wordpress Mu and I have come across a few sites that have helped me.
Feel free to send in more sites and I will add them to this list.
Filed under:
Wordpress MU
Posted by
webinfinite
Oct
25
I have successfully implemented wordpress blogs on our new Intranet system. Recently a teacher brought Wordpress Mu to my attention. We run a windows system with php running on IIS. I know that WPMU will not run on IIS right out of the box on a IIS system because it requires url rewriting. I have found a fix for this however I am having problems installing it still. I successfully manged to install this WPMU on a apache server with php and mysql.
I will be testing in the upcoming weeks to see how it performs. I will need to migrate all content from the current intranet in order to keep the migration smooth. With the current Intranet, I find it difficult to administrate all blogs. It seems with WPMU, the task of doing that becomes significantly simple.
I will update more as I get more into it.
Filed under:
Wordpress MU
Posted by
webinfinite
Jul
13
Hello, today you will learn how to add a default value such as “select a value” to the top of your bound dropdown list in vb.net. I am not going to show you how to bind your dropdown list, you can do that by searching this in google if you do not know how to do this.
After your dropdown list has been bound, you should use the following code after you close your connection to the database.
Dim Item As ListItem = New ListItem
Item.Text = “select a value”
Item.Value = “0″
Item.Selected = True
BoundDropDownList.Items.Insert(0, Item)
Hope this helps.
Posted by
webinfinite
Jul
9
So you want to learn how to create HTML Lists? That’s why you are here right?
Here is a list of HTML list tags you can use.
| <ol> |
Defines an ordered list |
| <ul> |
Defines an unordered list |
| <li> |
Defines a list item |
| <dl> |
Defines a definition list |
| <dt> |
Defines a term (an item) in a definition list |
| <dd> |
Defines a description of a term in a definition list |
| <dir> |
Deprecated. Use <ul> instead |
| <menu> |
Deprecated. Use <ul> instead |
Here is an example of an unordered list.
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
<ul>
<li>Hockey</li>
<li>Football</li>
</ul>
Result
<ol>
<li>Hockey</li>
<li>Football</li>
</ol>
Result
- Hockey
- Football
Experiment with the other tags to see what you get. Good luck.
Posted by
webinfinite
May
10
Dim strHockey As String = “vancouver canucks”
strHOckey = StrConv(strHockey, VbStrConv.ProperCase)
MsgBox(srtHockey)
Output will be Vancouver Canucks
Posted by
webinfinite
May
9

I wanted to be one of the first to share with you a Canadian online shopping
website that pays you Cash Back Rebates on online purchases. The website is
called GreatCanadianRebates.ca. Why not join us? Continue to shop online or
become an online shopper at many of your favourite merchants. The expanding
list of merchants includes: Dell, Expedia, Chapters & Indigo, The Source
by Circuit City, Travelocity, The Apple Store and The Shopping Channel.
Savings and rebates are only a few clicks away.
GreatCanadianRebates.ca is extremely easy to use. To get started, register by
following the link below, shop as you currently do and your rebates will be
automatically credited to your Cash Back Rebate account.
GreatCanadianRebates.ca also has many great coupons, free shipping specials,
and sales directly from the stores.
As a bonus for registering GreatCanadianRebates.ca will give you a Toonie!
That’s right, $2.00 will automatically be deposited into your account, just
for registering. GreatCanadianRebates.ca also has an incredible referral
program that will make you money. You will earn a 10% Referral Bonus on all
Cash Back Rebates earned by any new Member you refer.
Please register by clicking here.
Happy Shopping and Saving!
Filed under:
Online Tools
Posted by
webinfinite
Apr
11
MeasureIt is an extension for Firefox that allows you, the broswer user, to measure any area of your screen. It helps greatly if you are a web designer creating a webpage. I have used it to get exact mesurements of a banner or picture. The units are measured in pixals and are displayed as you drag your mouse over an area. The extension can be download from the Firefox Add-on page or by clicking here.
Posted by
webinfinite
Mar
27
Introduction
Back in the days of classic ASP, if you were building a database-driven web site, your choice was either to invest a lot of money to get a copy of Microsoft SQL Server (or some othe
enterprise-ready database) or invest a lot of time finding a way to deal with the performance and scalability limitations of Microsoft Access. Luckily these days there’s another viable alternative: MySQL.
Click here to get more information on how to set this up with asp.net.
Filed under:
Asp.net, MySQL