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

Share price charting tool

Use this interactive chart to analyse GSK's historic share performance.

The data in this chart is also available to view in text format, by selecting the link below. This version can be used by a range of screen readers.


<% /* 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/graph.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