KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /home/queenjbs/www/FusionChart/Code/VB_NET/UpdatePanel/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/queenjbs/www/FusionChart/Code/VB_NET/UpdatePanel/Sample1.aspx.vb
Imports DataConnection
Imports InfoSoftGlobal
Imports System.Text
Partial Class UpdatePanel_Sample1
    Inherits System.Web.UI.Page

    Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        'This will execute first time the page loads and not on ajax post back calls
        If IsPostBack = False Then

            'Generate Radio button from the available Factory names in Database
            'Get Factory names from Factory_Master
            Dim strSQL As String = "select FactoryId,FactoryName from Factory_Master"

            'Open datareader using DBConn object
            Dim rs1 As New DbConn(strSQL)
            'Fetch all record 
            While rs1.ReadData.Read()

                'Creating Radio Button List 
                RadioButtonList1.Items.Add(New ListItem(rs1.ReadData("FactoryName").ToString(), rs1.ReadData("FactoryId").ToString()))
            End While
            ' close datareader 
            rs1.ReadData.Close()


            'Select First radio button as dafult value
            RadioButtonList1.Items(0).Selected = True

            'Show chart as per selected radio button.
            updateChart()

        End If
    End Sub

    'When radio button selection changes i.e. selected factory changes
    Protected Sub RadioButtonList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)

        'Update FusionCharts and gridview with as per selected factory
        updateChart()
    End Sub

    ''' <summary>
    ''' update FusionCharts and gridview with as per selected factory name
    ''' </summary>
    Private Sub updateChart()

        'Get factory details depending on FactoryID from selected Radio Button
        Dim strSQL As String = "select DatePro, Quantity from Factory_Output where FactoryId=" & RadioButtonList1.SelectedValue.ToString() & " order by DatePro"

        'Create data reader to bind data with GridView 
        Dim rs As New DbConn(strSQL)
        'Fillup gridview with data from datareader
        GridView1.DataSource = rs.ReadData
        ' binding the data
        GridView1.DataBind()

        'Create database connection to get data for chart 
        Dim oRs As New DbConn(strSQL)

        'Create FusionCharts XML
        Dim strXML As New StringBuilder()

        'Create chart element
        strXML.Append("<chart caption='Factory " & RadioButtonList1.SelectedValue.ToString() & "' showborder='0' bgcolor='FFFFFF' bgalpha='100' subcaption='Daily Production' xAxisName='Day' yAxisName='Units' rotateLabels='1'  placeValuesInside='1' rotateValues='1' >")

        'Iterate through database
        While oRs.ReadData.Read()

            'Create set element
            'Also set date into d/M format
            strXML.Append("<set label='" & Convert.ToDateTime(oRs.ReadData("DatePro")).ToString("d/M") & "' value='" & oRs.ReadData("Quantity").ToString() & "' />")

        End While

        'Close chart element
        strXML.Append("</chart>")


        'outPut will store the HTML of the chart rendered as string 
        Dim outPut As String = ""
        'when an ajax call is made or
        'When the page is loaded for the first time, we call RenderChart() method
         outPut = FusionCharts.RenderChart("../FusionCharts/Column2D.swf", "", strXML.ToString(), "chart1", "440", "350", False, True)

        'Clear panel which will contain the chart
        Panel1.Controls.Clear()

        'Add Litaral control to Panel which adds the chart from outPut string
        Panel1.Controls.Add(New LiteralControl(outPut))

        ' close Data Reader
        oRs.ReadData.Close()
    End Sub
End Class

Anon7 - 2021