VBA/ASP Solutions for Optimizing Web and Office Business
  • Website Optimization and SEO
  • Office Automation with VBA
  • Contact

MySQL Commands

By gdolenc On April 6, 2012 · Leave a Comment

Create a database on the sql server.

mysql> create database [databasename];

List all databases on the sql server.

mysql> show databases;

Switch to a database.

mysql> use [db name];

To see all the tables in the db.

mysql> show tables;

To see database’s field formats.

mysql> describe [table name];

To delete a db.

mysql> drop [...]

Continue Reading →

Don’t use document.all

By gdolenc On December 1, 2011 · Leave a Comment

I’ve lost count of the number of Javascript scripts I’ve seen floating around
that include the equivalent of the following code snippet:

if (document.all) { element = document.all[id]; else { element = document.getElementById(id); }

 

document.all was introduced in Internet Explorer 4, because the W3C DOM hadn’t yet standardised a way of grabbing references [...]

Continue Reading →

Facebook Comment Box Integration

By gdolenc On August 26, 2011 · Leave a Comment

In this tutorial we will show you step by step how to integrate FB Comment box into your website. An example can be seen on the following picture: The official tutorial can be found here: http://developers.facebook.com/docs/reference/plugins/comments/ Facebook Setup If you would like to integrate FB comment box, you should first be logged [...]

Continue Reading →

Link Analysis Tool that Can Save You a lot of Time

By gdolenc On July 1, 2011 · 1 Comment

All of us who are related to the web business and SEO is looking for way to position higher and higher in search engines. If I simplify things, there are two necessary steps you can do about it. First, write enough and quality content and second, build links. There are many different strategies of building [...]

Continue Reading →

VBA Quote Replacing

By gdolenc On July 1, 2011 · Leave a Comment

If you are programming some VBA I/O application, where you are dealing with quotes in the string, like for example website URLs, you have to replace each quote in the string with ” & chr(34) & “

Example:

Original string:

<a href=”http://www.mptrader.com/images/charts/zmDDG23mC.gif” _mce_href=”http://www.mptrader.com/images/charts/zmDDG23mC.gif”></a>

VBA converted string:

<a href=” & chr(34) & “http://www.mptrader.com/images/charts/zmDDG23mC.gif” & chr(34) & [...]

Continue Reading →

Quick Analytics for a Specific Website

By gdolenc On July 1, 2011 · Leave a Comment

An interesting website to check site profile:
Estimated Value
Estimated Revenue per ady, per month , per year
Estimated Pageviews per day, per month per year
Alexa Rank
Google Pagerank
Google Index
Yahoo Index
Bing Index
History
Site Title
Meta Keywords
Meta Description

Continue Reading →

How to Write a SEO Optimized Article

By gdolenc On June 30, 2011 · Leave a Comment

If you are writing an article that will be published on the internet, you would probably like that as many visitors as possible would read it, don’t you? The question is, how can you achieve that? Well, the first thing you have to be aware of is, that visitors come to your website mostly through [...]

Continue Reading →

SBI Website Traffic Results

By gdolenc On June 30, 2011 · Leave a Comment

I have decided to share my ‘Stocks’ traffic stats with you for the first 10 months, to see what kind of progress you can achieve by using SIB tools for building your website.

Google has finally updated visible page rank and I can say I am very happy with it. The [...]

Continue Reading →

Sitemap XML generator For Your Website

By gdolenc On June 30, 2011 · Leave a Comment

I have just programmed an sitemap generator. I have used Excel 2007 VBA for this purpose. The macro runs through a predefined directory and pulls out information required in the Sitemap.xml file: url, last modification and priority.

Why do you need sitemap and instruction about how the sitemap file should look like can be [...]

Continue Reading →

How to Get PR for Outgoing Links on a Specific Website?

By gdolenc On June 30, 2011 · Leave a Comment

I know there are many tools out there which can help you in your link building strategy and SEO. However, there are many situations, when you need something particular, just a small piece of code that would ease your life by automating few simple tasks. In this case, you are not motivated in buying [...]

Continue Reading →
← Previous Entries
  • Categories

    • Analytics (1)
    • Blog Sites (1)
    • Excel (3)
    • HTML (1)
    • JavaScript (1)
    • Link Building (3)
    • Link Exchange (1)
    • MySQL (1)
    • SBI (2)
    • SEO (5)
    • Uncategorized (1)
    • VBA (3)
    • Website Building (6)
  • Archives

    • April 2012 (1)
    • December 2011 (1)
    • August 2011 (1)
    • July 2011 (3)
    • June 2011 (12)
  • Recent Comments

    • web development on Link Analysis Tool that Can Save You a lot of Time
    • Maja on Website Product Filtration and Comparison Module
  • Admin

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org

VBA/ASP Solutions for Optimizing Web and Office Business

Pages

  • Contact
  • Office Automation with VBA
  • Website Optimization and SEO

The Latest

  • MySQL Commands
    Create a database on the sql server. mysql> create database [databasename]; List […]

More

Thanks for dropping by! Feel free to join the discussion by leaving comments, and stay updated by subscribing to the RSS feed.
© 2011 VBA/ASP Solutions for Optimizing Web and Office Business
Platform by PageLines