Strictly speaking browsers will pass referer header for an iFrame though I wouldn't count on this sort of behavior. It is bad design since anything could break it. Users can turn off referer headers with advanced settings in Firefox for example.
Is "Page B" a rails page in your app? Why not call your iFrame with a URL like this:
/controller/action?parent=a
Then in your view action
def show
parent = params[:parent] || nil
#do something based on parent being "a" or whatever you like
end
This way you can pass whatever you need into your iFrame and have it display different links back to whatever you like based on if it was called from an iFrame, etc.