No way to test this command right now, but try this:
Netstat -an | grep -i est | grep -i 80
If you run netstat -an you can see a good amount of info, but it won't be filtered. If you want just a specific count of connections, you can then pipe the above command to wc like this:
Netstat -an | grep -i est | grep -i 80 | wc -l
Use it after verifying that what comes back from the first command.
You can also try netstat -anp to get the process information as well (http). For more info, you can just look at the man page: man netstat
This *should* get you what you want, again, no way for me to test right now. Let us know how it goes.