You're not going to be able to frame this, because the site uses X-Frame-Options
. I did this request:
GET /find-a-location HTTP/1.1
Host: www.solstas.com
And got this response:
HTTP/1.1 302 Found
Cache-Control: private
Content-Length: 176
Content-Type: text/html; charset=utf-8
Location: /error/internal-server-error?aspxerrorpath=/find-a-location
Server: Microsoft-IIS/7.5
X-Umbraco-Version: 4.7
Set-Cookie: UserLatitude=29.8301; path=/
Set-Cookie: UserLongitude=-95.4739; path=/
X-Powered-By: ASP.NET
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Date: Fri, 14 Mar 2014 06:15:15 GMT
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/error/internal-server-error?aspxerrorpath=/find-a-location">here</a>.</h2>
</body></html>
The X-Frame-Options: SAMEORIGIN
means this page shouldn't be displayed in a frame, including an iframe. Practically speaking, it means you can't do it, because pretty much all modern browsers will obey this request.