如何检查按钮是否在页面加载中单击

时间:2012-12-07 14:31:15

标签: asp.net vb.net events button

我有一个按钮我不想在我的页面加载中导致这个命令。

If Page.IsPostBack Then
        ViewState(2) = TreeView1.SelectedNode.ValuePath
        ViewState(5) = TextBox1.Text
       ''Where I would like to put another if command or whatever else is possible to check if the buttong was clicked''
        If ViewState(2) = ViewState(1) And ViewState(5) = ViewState(4) Then
            nodecount = ViewState(3)
            nodecount = nodecount + 1
            ViewState(3) = nodecount
            If nodecount > 0 Then
                MsgBox("Please select another option or different number of data points")

            End If

        Else
            nodecount = 0
            ViewState(3) = nodecount
        End If
    End If

我尝试设置一个公共属性来改变,如果单击该按钮但是先调用page.ispostback然后调用sub。

1 个答案:

答案 0 :(得分:0)

我不确定我是否完全理解你的问题。如果您尝试运行一段代码,为什么不在btnSomeButton.Click事件中执行此操作,为什么要在Page_Load事件中执行此操作。