Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/flash/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Asp.net 页面刷新时,选项卡容器中的Ajax组合框按钮消失_Asp.net_Ajax_C# 4.0_Wss - Fatal编程技术网

Asp.net 页面刷新时,选项卡容器中的Ajax组合框按钮消失

Asp.net 页面刷新时,选项卡容器中的Ajax组合框按钮消失,asp.net,ajax,c#-4.0,wss,Asp.net,Ajax,C# 4.0,Wss,我有一个包含3个选项卡面板的tabcontainer。在第一个选项卡面板中,我有combobox。每个选项卡面板都有一个保存按钮。当我们单击保存按钮时,页面将刷新。当我单击第一个选项卡中combobox所在的保存按钮时,我没有遇到任何问题。 当我点击其他选项卡上的保存按钮页面获得刷新时,但是当我来到选项卡1时,组合框下拉按钮消失了 我确实将这个选项卡容器放在了更新面板中,我尝试了Updatemode=“Conditional”,但它只对回发有效,不适用于整个页面刷新 请在此问题上提供帮助将此cs

我有一个包含3个选项卡面板的tabcontainer。在第一个选项卡面板中,我有combobox。每个选项卡面板都有一个保存按钮。当我们单击保存按钮时,页面将刷新。当我单击第一个选项卡中combobox所在的保存按钮时,我没有遇到任何问题。 当我点击其他选项卡上的保存按钮页面获得刷新时,但是当我来到选项卡1时,组合框下拉按钮消失了

我确实将这个选项卡容器放在了更新面板中,我尝试了Updatemode=“Conditional”,但它只对回发有效,不适用于整个页面刷新


请在此问题上提供帮助

将此css添加到组合框为我修复了此问题

.mycombostyle .ajax__combobox_inputcontainer .ajax__combobox_buttoncontainer button
{ margin: 0; 
  padding: 0; 
  background-image: url(../Images/AjaxControlToolKit/ComboBox/icarus-arrow.png); 
  background-position: top left; 
  border: 1px black solid; 
  height: 20px !important; 
  width: 25px !important;}  

.mycombostyle ul
{ position: absolute !important; 
  min-width: 270px; 
  width:auto !important;     
  min-height: 150px; /*height:auto !important;*/  
  overflow-y: auto !important;}

标准下拉列表?什么样的组合,什么样的标签容器?这些是Ajax控件工具箱控件吗?是的,它是一个Ajax组合框…我使用Ajax工具包3.0来创建Ajax组合框和Ajax tabcontainer