2016-07-15 25 views
0

現在プロジェクトを進めています。私は突然、私の脳を本当に爆破させた問題に遭遇しました。私はbindGridという名前のgridviewにデータベースのテーブルの内容を表示する関数を持っています。私は50から90のレコードを照会すると、完璧に動作しています。しかし、100レコード以上のクエリを実行すると、autopostbackに設定されているドロップダウンボックスの値を変更するまで、gridviewはレコードを表示しません。あなたは、私は、フィルタボタンをクリックした後、実行が行われている見ることができるようGridviewは更新されたレコードを更新しません

Protected Sub btnFilter_Click(sender As Object, e As EventArgs) Handles btnFilter.Click 
     If cboFilter.Text = "DMZ" Then 
      lblErrFilter.Visible = False 
      lblError.Visible = False 
      If drpYear.Text = "--Select--" Or drpMonth.Text = "--Select--" Or txtDMZ.Text = "--Select--" Or txtTop.Text = "" Then 
       If drpYear.Text = "--Select--" Then 
        lblErrYear.Visible = True 
       Else 
        lblErrYear.Visible = False 
       End If 
       If drpMonth.Text = "--Select--" Then 
        lblErrMonth.Visible = True 
       Else 
        lblErrMonth.Visible = False 
       End If 
       If txtDMZ.Text = "--Select--" Then 
        lblErrDMZ.Visible = True 
       Else 
        lblErrDMZ.Visible = False 
       End If 
       lblError.Visible = True 
       lblError.Text = "No value specified for the following parameter(s) *." 
      Else 
       lblErrYear.Visible = False 
       lblErrMonth.Visible = False 
       lblErrDMZ.Visible = False 
       Call bindData() 
       'If Me.IsPostBack = True Then 
       Call bindGrid() 
       'End If 
       ' 
      End If 
     '__________________________________________________________________________ 
     'Zone filter 
    ElseIf cboFilter.Text = "Zone and Book" Then 
     lblErrFilter.Visible = False 
     lblError.Visible = False 
     If drpYear.Text = "--Select--" Or drpMonth.Text = "--Select--" Or txtZone.Text = "--Select--" Or txtTop.Text = "" Then 
      If drpYear.Text = "--Select--" Then 
       lblErrYear.Visible = True 
      Else 
       lblErrYear.Visible = False 
      End If 
      If drpMonth.Text = "--Select--" Then 
       lblErrMonth.Visible = True 
      Else 
       lblErrMonth.Visible = False 
      End If 
      If txtZone.Text = "--Select--" Then 
       lblErrZone.Visible = True 
      Else 
       lblErrZone.Visible = False 
      End If 
      lblError.Visible = True 
      lblError.Text = "No value specified for the following parameter(s) *." 
     Else 
      lblErrYear.Visible = False 
      lblErrMonth.Visible = False 
      lblErrZone.Visible = False 
      Call bindData() 
      Call bindGrid() 
     End If 
    ElseIf cboFilter.Text = "Account Number" Then 
     If txtFrom.Visible = True And txtTo.Visible = True Then 
      If drpYear.Text = "--Select--" Or drpMonth.Text = "--Select--" Or txtFrom.Text = "" Or txtTo.Text = "" Then 
       If drpYear.Text = "--Select--" Then 
        lblErrYear.Visible = True 
       Else 
        lblErrYear.Visible = False 
       End If 
       If drpMonth.Text = "--Select--" Then 
        lblErrMonth.Visible = True 
       Else 
        lblErrMonth.Visible = False 
       End If 
       If txtFrom.Text = "" Then 
        lblErrR1.Visible = True 
       Else 
        lblErrR1.Visible = False 
       End If 
       If txtTo.Text = "" Then 
        lblErrR2.Visible = True 
       Else 
        lblErrR2.Visible = False 
       End If 
       lblError.Visible = True 
       lblError.Text = "No value specified for the following parameter(s) *." 
      Else 
       Call bindData() 
       Call bindGrid() 
      End If 
     Else 
      If drpYear.Text = "--Select--" Or drpMonth.Text = "--Select--" Or lstAcct.Items.Count = 0 Then 
       If drpYear.Text = "--Select--" Then 
        lblErrYear.Visible = True 
       Else 
        lblErrYear.Visible = False 
       End If 
       If drpMonth.Text = "--Select--" Then 
        lblErrMonth.Visible = True 
       Else 
        lblErrMonth.Visible = False 
       End If 
       If lstAcct.Items.Count = 0 Then 
        lblErrAcct.Visible = True 
       Else 
        lblErrAcct.Visible = False 
       End If 

       lblError.Visible = True 
       lblError.Text = "No value specified for the following parameter(s) *." 
      Else 
       lblErrYear.Visible = False 
       lblErrMonth.Visible = False 
       lblErrR1.Visible = False 
       lblErrR2.Visible = False 
       Call bindData() 
       Call bindGrid() 
      End If 
     End If 
    Else 
     If cboFilter.Text = "--Select--" Then 
      lblErrFilter.Visible = True 
     End If 
     lblError.Visible = True 
     lblError.Text = "No value specified for the following parameter(s) *." 
    End If 
    'Response.Redirect("~/Sites/CD/TopCon.aspx", True) 
End Sub 

:ここ

はコードのサンプルです。

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 


    If User.Identity.IsAuthenticated = False Then 
     Response.Redirect("/Default.aspx", True) 
    Else 
     If User.IsInRole("chicken") = True Or User.IsInRole("dog") = True Or User.IsInRole("cat") = True Then 
      If Not IsPostBack Then 
       maxTop = 10 
       txtTop.Text = maxTop 
       Call bindData() 
       Call bindGrid() 
       lblUser.Text = lblUser.Text & User.Identity.Name 
       lblIP.Text = lblIP.Text & GetIPAddress() 
       cboFilter.TabIndex = 0 
       Call fillYear() 
       Call fillDMZCombo() 
       Call fillZoneCombo() 
       Call fillType() 
      Else 
       *Call bindGrid()* 
      End If 
     Else 
      Response.Redirect("/Default.aspx", True) 
     End If 
    End If 

End Sub 

まあ、私が設定されている、私は私のコントロールをクリックしGridViewのリフレッシュは、それが原因で私は内部の私をPage_Loadに挿入bindGridのだAutoPostBackのための理由を知っている:ここで

は私のページのロードでありますelse。

これは本当に受動的なコードのようです。本当に気になるのは、100個以上のレコードを照会するときに、フィルターボタン内のbindGridが実行されない理由です。ここで

はbindGridのための私のコードです:

Public Sub bindGrid() 
    IpAdd = GetIPAddress() 
    xUser = User.Identity.Name 

    ShowCon = New SqlConnection("some data connection") 
    ShowCon.Open() 

    cmdShowCon = ShowCon.CreateCommand 
    cmdShowCon.CommandTimeout = 600 
    cmdShowCon.CommandText = "some simple select statement" 
    daShowCon.SelectCommand = cmdShowCon 
    dsShowCon.Clear() 
    daShowCon.Fill(dsShowCon, "someTable") 

    grdTopCon.DataSource = dsShowCon 
    grdTopCon.DataBind() 

End Sub 

すべてのヘルプははるかに高く評価されるだろう。

答えて

0

btnFilter_Clickにブレークポイントを設定して、問題の原因を確認してください。内部のアルゴリズムやPage_Loadイベントの内部で発生する可能性があります。

関連する問題