<%@page language="java" %> <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <%@ page import="java.io.*" %> <%@ page import="java.net.*" %> GSK
GlaxoSmithKline logo

Detailed share price

This page provides details of GlaxoSmithKline's share price, including: day change information, bid and offer prices.

Key investment ratios and 52 week high and low figures provide a quick gauge of the company's performance.


<% /* define the variables */ URL pageURL = null; BufferedReader pageReader = null; String inputLine = null ; /* Read in the URL and request string, and send everything through to the page - our XSL page will ignore any parameters its not expecting Change this url to integrate different pages */ String requestString = request.getQueryString(); String url = "http://staging.hemscott.com/ir/gsk/shareprice.jsp?"+requestString; pageURL = new URL(url); /* Output the selected feed page */ pageReader = new BufferedReader( new InputStreamReader(pageURL.openStream())); while ((inputLine = pageReader.readLine()) != null) out.println( inputLine ); /* Close the file */ pageReader.close(); %>

Updated 30 January 2006