Thursday, July 5, 2012

VBScript Web Services / SOAP (References)

The following is a set of resources to help when working with SOAP Web Services from VBScript.  Resources include tutorials, examples and forum threads relating to working with SOAP Web Services via VBScript (VBS).

Monday, September 5, 2011

DIY SharePoint Marketing Tips & Tools - Do Follow SharePoint Article Libraries

Looking for places to help promote your SharePoint products or website using legitimate means?  In this article I provide information and tips about how you can promote your products or services yourself for free.  The article has a focus on promoting a website relating to SharePoint, but the tips are applicable to any type of product or service being marketing online.  A few websites providing free (Do Follow) SharePoint Article Libraries are also provided.

Sunday, August 14, 2011

How to Generate Feed Using Php (Atom 1.0 and RSS 2.0 Compatible)

In this tutorial, I demonstrate how to generate a feed using Php that can be displayed from a website in multiple formats, including Atom 1.0 and RSS 2.0.  I will be using functionality from the Php FeedWriter class library to generate the feed, which is available for free at http://phpFeedWriter.webmasterhub.net/.

I have broken up the process below into separate components, and provided additional information to help you learn each aspect of creating the feed using Php.  A download of the completed script written in this tutorial is also provided if required.

Summary

  • Prepare your feed script/page - Instantiate a (Php) FeedWriter Class Object
  • Add additional (Channel) data to the feed
  • Add Items to the Feed
  • Get the specified feed output format
  • (Optional) Set the “Content” element of each feed item as type “HTML”
  • Output the Feed XML
  • (Optional) Writing to a file / Caching Feed Content

Wednesday, June 29, 2011

Php FeedWriter Released - Version 3.0 Beta - Universal Feed Generator

Generate Atom 1.0, RSS 2.0 and RSS 1.0 feeds for free using Php.


Php FeedWriter 3.0 beta has been released for download.  The update to the class and functionality builds upon the previous version RSS2Writer v2.1, which limited output to an RSS 2.0 compatible feed only.
Php FeedWriter 3.0 now supports multiple feed formats: Atom 1.0, RSS 2.0, RSS 1.0, RSS 0.92 and RSS 0.91.  Php FeedWriter povides a set of easy to use functions to handle both feed input and output.

Monday, June 13, 2011

WordPress Breadcrumb Navigation on Pages & Meta Title

Today I needed to include page breadcrumbs on a WordPress blog site.  I only wanted the breadcrumb navigation to be visible on pages, and to not display at all on the homepage (static).

Sunday, February 13, 2011

Javascript Query String Manipulation Functions

Javascript Query String Manipulation Functions

The following is a series of articles with Javascript functions that can be used to manipulate the query string parameters and variables in the current url.  Use the links below to go to a specific function:

Javascript Add Query String Parameter
Add a query string parameter to the url of the current page.

Javascript Check if Query String Parameter Exists in current URL
Test if the query string of the current URL contains a specific parameter.

Javascript Remove a parameter from the query string if found in current url
Remove a parameter from the query string of the current page.

Javascript Get the value of the specified Query String Parameter
Find the value of a specific query string parameter in the current URL.  Return the value of the parameter, or false if not found.

Javascript Get all parameters and values as an Array
Returns a multidimensional array containing parameters and values from the query string of the current page.

Javascript Return the url of the current page with no query string parameters (strip params)
Removes all parameters from the query string of the current URL.

Javascript Add query string parameter dynamically to some or all links on the current page
Update all links on the current page to include a specific query string parameter and value.

Javascript Add query string parameter dynamically to some or all links on the current page

This Javascript function retrieves all <a> tags (hyperlinks) from the current page, and updates each link to include the supplied query string parameter and value.
The third (optional) parameter passed to the function is an array of strings containing the domains that should be included when updating links on the page.
If a link points to a domain that is not in the array passed to the function, the link will remain unchanged.

If no Array of domains to include is supplied when calling the function, only the current domain is used.  For each link on the current page that the function loops through, the query string parameter is added to the link if the host matches one of the hosts in the array of domains.
Understood
This website is using cookies. More details