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.
webinfinite Wordpress MU
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.
webinfinite Asp.net
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.
webinfinite HTML HTML List Tags
Dim strHockey As String = “vancouver canucks”
strHOckey = StrConv(strHockey, VbStrConv.ProperCase)
MsgBox(srtHockey)
Output will be Vancouver Canucks
webinfinite Asp.net Vb.net Strings

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!
webinfinite Online Tools Tools
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.
webinfinite Firefox extensions, measureit
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.
webinfinite Asp.net, MySQL asp.net & mysql
Need inspiration for design? Visit this page and you will get plenty of great ideas on designs using CSS and graphics.
Some sites are even using Web 2.0. Click here to access this page.
webinfinite CSS, Web Design Web 2.0

broswershots.org
So you’ve designed a website and now you want to put it online. But wait a minute, your website looks great in Internet Explorer but how does it look in web browsers such as Firefox, Opera, Safari etc..? What do you do now? Do you install all browsers known to man kind? No, there is a awesome solution which is online and free.
We use browsershots.org to get our screen shots of our work. It is easy and free to use. All you have to do is enter your website address in the url “Enter URL Here:” section and select all the browsers you want to use to test your website. Within a few minutes, after you submit your site for testing, you should start to see some images of your site. It’s a great site for web developers and we recommend you use it.
webinfinite CSS, HTML, Web Design browsers, design, testing
A PHP switch statement is almost like an IF statement except it is good to use a switch statement when you want to compare many results on the same variable.
Example with integer.
Example with a string.
<?php
switch ($i) {
case "eagle:
echo "i is eagle";
break;
case "hawk":
echo "i is hawk";
break;
case "blue jay":
echo "i is blue jay";
break;
}
?>
webinfinite PHP switch statment