コード例 #1
0
    protected void FindPatientButton_Click(object sender, EventArgs e)
    {
        // set the search criteria
        SetSearchCriteria();

        // rebind the data
        AllDoctorsGridView.DataBind();
    }
コード例 #2
0
    protected void Button3_Click(object sender, EventArgs e)
    {
        // empty the textbox
        FindDoctorTextBox.Text = "";

        // set the search criteria
        SetSearchCriteria();

        // rebind the data
        AllDoctorsGridView.DataBind();
    }
コード例 #3
0
 /// <summary>
 /// talk the to the web service to update the data
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 protected void Timer1_Tick(object sender, EventArgs e)
 {
     AllDoctorsGridView.DataBind();
 }