DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Get Html Body
// description of your code here
require 'net/http' port = 80 host = localhost page = 'new' Net::HTTP.start(host, port = p) do |http| response = http.get page response_body = response.body end




