Cool Stuff

Try Market Samurai now for free!

Think Outside Inc Stowaway Keyboard
The Solution To Bloging on Your Smartphone

Now Add This - GREAT PRICE!
Cingular 8525 Smartphone

SimpleTech External Hard Drives
Elegant Backup Solutions

Acronis True Image Server
Server Backup Solutions When You Gotta Keep Going

Archive for the ‘Web Design’ Category

postheadericon A poorly designed website can cost you sales

A poorly designed website can cost you sales and hurt your credibility.

That’s why I’ve written a special report;

————————————————————————————-
6 Hidden Traps that Kill Online Business
and Why Most Web Designers Don’t Want You to Know About Them

————————————————————————————-
The information in my report is honest and really good advice if you are looking to buy a website.

You probably put up your website without knowing exactly what to do. Or you hired a designer that was focused more on graphics than the sales copy. The sad fact is few website designers know how to build a site that sells.

Web designers seem to think that your sales message is less important than logos and pretty pictures. They love high-tech things like animations, little intro movies and fancy navigation menus. Well, fancy animations don’t generate income… except for the web designer. In fact, they frequently drive visitors away.

Clearly, people online are in a BIG hurry. More than likely, they didn’t get online to go shopping. They came to your website seeking information or a solution to a problem.

You have a tiny amount of time to convince visitors that your product or service is the solution they need. If your website doesn’t demonstrate that solution, FAST, they’re gone. That’s why fancy animations and graphics just get in the way.

If you would like to read my special report you can download it here and you can get $261 worth of FREE Bonuses too, no really! Go get yours now!;

6 Hidden Traps that Kill Online Business

postheadericon Is Personalization Important?

Presonalization seems to be a pretty big buzzword right now, but is it as important as everyone is saying?

I recently heard from a friend who has implemented personalization in his landing pages that he has improved conversion rates by anywhere from 15-20%. Now that’s got to be worth a look.

So what is personalization? Its where you take a prospect’s name or some other piece of information you know about them and use it in a mass-marketing promotion. At least thats one form of it. We’ve all been doing this for years in our mailing right? Mail merge the persons first name into the salutation of our mailing so it starts ‘Dear firstname’.

But could just a simple first name improve response and increase conversion? and by how much?

The answer is a resounding YES! The REASON?

Read the rest of this entry »

postheadericon siteBOSS PASSES Microsoft Platform Test For Hosted Solutions

On Friday 02/06/2009 siteBOSS, TRS Technology’s Internet Marketing Website system, was tested by Microsoft and successfully passed!

siteBOSS PASSES Microsoft Platform Test For Hosted Solutions

That’s quite a mouthful, so what does it mean?

Well, it means a couple things;

  1. siteBOSS is built to recognized development standards. This means that the system architecture is correct for a hosted solution, as determined by Microsoft. If you want to find out exactly what that means look at the test guidelines. Go on, I dare you…
  2. It means that TRS Technology Group Inc is now a Microsoft Certified Partner.

Of course the system architecture is correct! I’ve been doing this for a long time and with a certain amount of flair. Let me tell you though, it aint easy! Many people think that development is now a fairly simple task, requiring low level skills and the ability to point a mouse and click. Not so my friends. I don’t think it’s gotten any easier, just different.

I also get to brandish a new partner logo, which I’m ok with. I’ve been a Microsoft Certified Professional for years now, so a new designation is cool.

Here is mine and Microsofts, yep, I’m a Microsoft shop and I think Bill Gates is a genius and have nothing but total respect for the man.

     

 

postheadericon Integrate Google Calendar in your web design

I’ve been asked by a couple people recently about option for coding a calendar function into their websites. While I do like to earn good money and make a handsome profit I feel that coding for the sake of it is not an option. There are so many services and online systems available these days that you can just plug into, why not just use whats available?

Many an anal retentive will explete ‘but it doesn’t look like my website’ or ‘I don’t want to drive traffic away from my site’. Fair enough, Ar’s (you know who you are).

Here’s a nice solution from Google, master of the internet, soon to be master of the world (when he’s finished photographing it at street level) and finally master of the universe (AKA God!).

You can plug in a Google calendar with but a few clicks of the mouse using my easy to use but pricey content management system!

Voila!

 

postheadericon Visual Studio 2008 SP1

I’ve just installed and configured Visual Studio 2008 Service Pack 1. This is still in BETA but I was anxious to install and try it because of a bug fix that Microsoft were putting in after I logged a bug report with them in January. You can find that here if you want http://www.trstechnology.com/blog/asp.net/index.php/visual-studio-2008/

The bug fix was specifically to allow the use of a remote IIS Server. The initial version only allowed you to specifiy a local IIS Server.

I’ve just tested it and it works perfectly!
Thanks so much to Bill Hiebert and Joe Cartano and the team at Microsoft for the fix.

Here’s the new option on the web properties tab;

image

postheadericon ASP.NET Machine Generated Code

I just started working with a new client in Port Charlotte. They have had a website built by a company in Tampa and how now parted company with that company, so to speak. So I pick up this system and start to go through the coding and it’s build etc, trying to get up to speed as quickly as possible. But something is not right. It’s a struggle, confusing, big, messy. I don’t know why…

 Well I eventually figure out that this website system, asp.net code, classes and modules, forms, and by golly the database and stored procedures have, for the most part be generated by a …. MACHINE! ARGHHHH.

Yes, thats right, the original developers are working with a software tool that allows them to work in plain english (I guess) with a client to spec out the system. They do their high level analysis etc, enter data into the software, press a button and voila! Here is your website sir!

This doesn’t include the design of the site aesthetically, the way it looks etc, which is actually quite nice…

So, what’s my point. Here it is… A machine generated system (i’m going back to database design days years ago when I used software tools to design databases) tends to be broken down into a very low level. What I mean by that is the mathematics and algorithms that do the analysis and create the design tend to go WAY TOO FAR! This means that you end up with a system that is very complex. It explains one reason why my new client decided to jump ship from the pervious developer. The initial development costs where quite low compared to the cost of ongoing development and support. The original developer ended up in the same position as I did. After producing the system with a software tool, they were left looking at it, pondering its complexity and wondering how it all works exaclty.

postheadericon Asynchronus Socket Programming

I’ve recently done some TCP/IP socket programming. The .Net framework provides a some nice features for making asynchronus program calls. One of the most robust is TCP/IP Sockets.

It can be quite confusing at first to understand the way an asynchronous call and callback mechanism works. I find it easier to understand when I look at the flow of the call first. So here is an outline of the flow.

The basic framework of an asynchronus call is:

  1. Declare the socket
  2. Socket.BeginConnect with ConnectCallback address
  3. ConnectCallback.EndConnect
  4. Socket.BeginSend with SendCallback address
  5. SendCallback.EndSend
  6. Socket.BeginRecieve with RecieveCallback address
  7. RecieveCallback.EndRecieve

And these are the actual function prototypes for an asynchronous TCP/IP socket. This is the outline, I’ll post some real code in another post later.

Dim state As New StateObject 

‘ Create a TCP/IP socket.
Dim client As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
‘ Connect to the remote endpoint.
client.BeginConnect(remoteEP, New AsyncCallback(AddressOf ConnectCallback), state)

Private Sub ConnectCallback(ByVal ar As IAsyncResult)
‘ Retrieve the socket from the state object.
Dim state As StateObject = CType(ar.AsyncState, StateObject)

Try
‘ Complete the connection.
state.workSocket.EndConnect(ar)
Catch ex As Exception
End Try
‘now do the send
‘ Begin sending the data to the remote device.
state.workSocket.BeginSend(byteData, 0, byteData.Length, 0, New AsyncCallback(AddressOf SendCallback), state)End Sub ‘ConnectCallback

Private Sub SendCallback(ByVal ar As IAsyncResult)
‘ Retrieve the socket from the state object.
Dim state As StateObject = CType(ar.AsyncState, StateObject)

Try
‘ Complete sending the data to the remote endpoint.
Dim bytesSent As Integer = state.workSocket.EndSend(ar)

Catch ex As Exception
End Try

 ‘now recieve the response
‘ Begin receiving the data from the remote device.
state.workSocket.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, New AsyncCallback(AddressOf ReceiveCallback), state)
End Sub ‘SendCallback 

Private Sub ReceiveCallback(ByVal ar As IAsyncResult)

‘ Retrieve the state object and the client socket
‘ from the asynchronous state object.

Dim state As StateObject = CType(ar.AsyncState, StateObject)
Dim client As Socket = state.workSocket

‘ Read data from the remote device.
Dim bytesRead As Integer = client.EndReceive(ar)
Try If bytesRead > 0 Then
‘ There might be more data, so store the data received so far.
state.sb.Append(Encoding.ASCII.GetString(state.buffer, 0, bytesRead))
‘ Get the rest of the data.
client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, New AsyncCallback(AddressOf ReceiveCallback), state)
Else ‘ All the data has arrived; put it in response.
 
If state.sb.Length > 1 Then response = state.sb.ToString()End If 

 

End IfCatch ex As ExceptionEnd Try
End Sub ‘ReceiveCallback  

I’ll post the state object class and in another post. I found the easiest way to maintain the connection and shut it down was to have the worksocket in the stateobject.

postheadericon Computer Security – Port Scanning

I’ve just been writing some code to run a TCP socket on a specific port. I was having trouble reading the response from the socket, which promted me to luckily find this damn good port scanning utility that I want to tell you about.

Its called JFirewallTest and it’s a nifty little Java program that can be run from the web page and will perform  a full port scan. All 65,536 ports are scanned very rapidly to find possible security holes in your firewall.

My sincere thanks to Michael Gardiner for developing and making this utility available free. You did a great job!

I had to download the Java runtime on all my servers and then checked them all. I’d wanted to do this for some time just to check. I new they were pretty secure and my firewall is locked down tight. Now I’m sure of this thanks to JFirewallTest.

It downloads and installs quickly and the port scan is performed in two phases and only takes a couple of minutes! Bloody marvellous! Thank you!

postheadericon Visual Studio 2008

I’ve recently installed Visual Studio 2008 and related software. I was hoping to upgrade and start developing in it as soon as possible.

I’ve generally always been an early adopter, but didn’t move to Visual Studio 2005 until quite late in it’s life cycle. I’ve since decided that was a mistake. It’s far better to be on the curve early than to come in late, or even miss a version and come in a versiion behind. Not a good idea.

Now, I know that Microsoft, God bless them, have had a really hectic schedule with the release of Vista and now Server 2008 and SQL 2008 coming soon. But, for heavens sake, I have a problem with using Visual Studio 2008 in my development environment and it’s a show stopper.

I always develop against a remote Windows server using IIS etc. That is so that I’m effectively running up against an environment that is pretty close to production. I haven’t had any problems with this for the last 4 years.

 I installed Visual Studio 2008 and tried to convert an existing project and VS couldn’t seem to access the development share. I then tried to create a new web application project with the same results.

 I’ve posted a thread on the ASP.NET forum. No replies to that yet…

And I’ve posted a bug report with Microsoft. I know that all environments may be configured slightly differently but if it’s working in Visual Studio 2003 and 2005 I certainly expect it to work in Visual Studio 2008. What a bloody pain!

postheadericon Parsing Google Maps HTML

If you cannot afford 10 grand for an enterprise version of the Google Maps API, then you might be stuck having to parse the html form the clunky old maps.google.com website. If that is the case, here’s a snippet of code that seems to work consistently to parse out the lat and lon from the html.

 If HTML.Length > 0 Then
‘we have something back so
‘get important part of string
Dim s1 As String = geo.Substring(geo.IndexOf(“viewport:{center:{“), 200)
Dim intStartPos As Integer = s1.IndexOf(“{lat:”, 0) + 5
Dim intEndPos As Integer = s1.IndexOf(“}”, intStartPos)
Dim intCommaPos As Integer = s1.IndexOf(“,”, intStartPos)

‘now assign the strings to lat/ lon vars
_lat = s1.Substring(intStartPos, intCommaPos – intStartPos)
_lon = s1.Substring(intCommaPos + 5, intEndPos – (intCommaPos + 5))

End If




Authorize.Net Merchant - Click to Verify