我正在创建一组Web用户控件,它们将共享一个公共基类。基类将始终包含一个WebControl (可以是Textbox、DropDownList、CheckBoxList、RadioButtonList、ListBox或其他)和一个RequiredFieldValidator。一切都很好,除了我的抽象InputControl属性(定义为WebControl类型)似乎没有我希望它们都具有的AutoPostBack属性(我假设这是因为并不是所有的WebControls都支持AutoPostBack)。我希望将此功能完全放在基类中,而不必在每个子类中定义它。它看起来是这样的:
public abstr
我有一个下拉列表与自动回退和更新面板,它的工作正常,但我也有其他控件在我的页面与自动备份。我需要的是控制页面何时是自动回退的,但下拉列表不是自动回退,请执行以下操作:
If is not Page.autopostback then
'do something
else if is not MyDropdownlist.autopostback then
' do something different
End if
我可以用这个:
If is not Page.autopostback then
End If
但我不能这么做
我在excel VBA代码中放入了AutoPostBack= True,而改变单元格的值不会更新结果。
Private Sub Sheet1()
AutoPostBack = True
If (Cells(2, 1).Value = "---") And (Cells(1, 2).Value = 0) Then
Cells(2, 2).Value = 0
Else
Cells(2, 2).Value = " "
End If
End Sub