Imports DataConnection Partial Class DB_dataURL_PieData Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal obj As Object, ByVal e As EventArgs) Handles Me.Load 'This page generates the XML data for the Pie Chart contained in 'Default.asp. 'For the sake of ease, we've used an Access database which is present in '../App_Data/FactoryDB.mdb. It just contains two tables, which are linked to each 'other. 'Database Objects - Initialization Dim oRs As DbConn, strQuery As String 'strXML will be used to store the entire XML document generated Dim strXML As String 'Generate the graph element strXML = "" 'Iterate through each factory strQuery = "select * from Factory_Master" oRs = New DbConn(strQuery) While oRs.ReadData.Read() 'Now create second recordset to get details for this factory strQuery = "select sum(Quantity) as TotOutput from Factory_Output where FactoryId=" & oRs.ReadData("FactoryId").ToString() Dim oRs2 As New DbConn(strQuery) oRs2.ReadData.Read() 'Generate strXML = strXML & "" 'Close recordset oRs2.ReadData.Close() End While oRs.ReadData.Close() 'Finally, close element strXML = strXML & "" 'Set Proper output content-type Response.ContentType = "text/xml" 'Just write out the XML data 'NOTE THAT THIS PAGE DOESN'T CONTAIN ANY HTML TAG, WHATSOEVER Response.Write(strXML) End Sub End Class