Friday, October 25, 2013

Free SIP account and Phone number, then Connect Google Voice Number to your SIP Soft Phone - Free

The way to connect Google voice to your SIP soft phone is fairly simple

1. Get a SIP account from sip2sip.info

Its free and just take a minute to create an account

2. Get an IPKall phone number from ipkall.com

create an account and use your sip3sip.info and they will give you a USA phone number.

3. Get a google voice number and forward it to your IPKall phone number

4. setup your softphone using your sip2sip.info account

This way you have a local google voice number that rings on your softphone!

enjoy!


Tuesday, September 24, 2013

document.getElementById and asp.net with Master Pages

Using JavaScript to locate controls in ASP.net pages that are linked to master pages can be tricky.  This is because the ASP.net reassigned control IDs dynamically.

A simple solution is to use asp.net inline Tags.

For Example:

Instead for saying:

document.getElementById("Label1")

say

document.getElementById("<%=Label1.ClientID%>")


Thats it... I hope this helps some of you.