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.
WPMU DEV Premium
WPMU.org
Feel free to send in more sites and I will add them to this list.
...
Read More/p>
Posted in Wordpress | No Comments »
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.
...
Read More/p>
Posted in Wordpress | No Comments »
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.
...
Read More/p>
Posted in Asp.net | No Comments »