Thursday, February 18, 2010

How do I register a dll

Open up the command window.
Go to Start | Run
Type in cmd
In the new dos window (for those of you that know dos), type in the regsvr32 [path and dll name]

So, it would look like this

regsvr32 c:\joe.dll

Friday, January 29, 2010

Shoemoney system enrollment closed unless you have a secret code. Contact me if you want it.

Ok, well, the signup limit of 500 people closed out in 29 hours. Not bad for a launch huh. Anyway, it's closed. Earlier we were sent information that there are 19 openings. Not sure why, maybe a couple of people opted out once they signed up. Anyway, it's a private registration and only existing members can invite new people into the system. Sooooo, if you are interested, please contact me using the "Need Help? Ask a webmaster" link in the top navigation. At that point, I'll send you a link with the secret passcode to sign up. Otherwise, you'll have to join the waiting list.

Monday, January 25, 2010

$2,000 in free Advertising coupons

Ok, I know this post is a little out of sorts, but, I do work on the side making money. A lot of times it's making money by doing more programming. Sometimes I wonder if it will ever end. More hours equals more money, but I would like to take a break sometime.

Anyway, I've been doing affiliate marketing on the side to get some residual. After all, I've been building sites for everyone else to make some money, I might as well make some for me.

Well, I just signed up for the new ShoeMoney system (Yes, the guy with the $130,000 Adsense check from Google.) He's got this new video tutorial system that trains you how to make money. Granted it hasn't been long, but after following his blog, I've made $60. I'm looking for the training videos to make me a little more :) He's got a teacher on there that took the class and she's already banking a little extra cash.

Anyway, the system comes with $2,000 in Advertising coupons from Google, AOL, Facebook and many others. Essentially, the program pays for itself. Even if you're just looking to get free ad time, it's worth it. To check it out, go here.

Tuesday, December 29, 2009

.net join for arrays

If you're used to the old way of converting an array into a comma delimited list, here's the new way(?). It's been there, but you may not have used it.

String.Join(",", array);

How do I add Head tags in .net using c#

There are of course many tags you can use. Here are a couple to get you started... Also, don't forget to set the Title as well. (this.Header.Title = "this is the title";)

  1. keywords
  2. description
  3. robots
  4. date


HtmlMeta metatag = new HtmlMeta();
metatag.Name = "Description";
metatag.Content = "Here's a great description.";
this.Header.Conrols.Add(metatag);

OR, I like it this way...


HtmlMeta metatag = new HtmlMeta(){

   Name = "Description",
   Content = "Here's a great description.",
};

this.Header.Conrols.Add(metatag);

Friday, December 18, 2009

How do I urlencode in an aspx file

I ran across this while using a repeater. Of course, it can occur in a datagrid as well. The data that's coming from the datasource has & signs and spaces. When the & comes across, and it's put into a query string as a parameter, it's not translated right when sent to the next page. So, I want to encode it so the request.querystring will work. Here's the solution: