繁体   English   中英

Ajax自动完成CSS在iis和服务器上工作正常,但在本地计算机上工作不正常

[英]Ajax Auto complete Css works fine in iis and the server but not in local machine

我在程序中使用了ajax auto completeextender,它的工作正常,没有问题。 托管到iis服务器后,我在iis中对其进行了检查,效果也很好。 但是当我从浏览器自动完成访问正常但css无法正常工作时,

我正在使用外部样式表,这是我使用的CSS

/*AutoComplete flyout */
.autocomplete_completionListElement
{
    margin : 0px!important ;
    background-color : inherit ;
    color : windowtext ;
    border : buttonshadow ;
    border-width : 1px ;
    border-style : solid ;
    cursor : 'default' ;
    overflow : auto ;
    height : 200px ;
    font-family : Tahoma ;
    font-size : small ;
    text-align : left ;
    list-style-type : none ;
    }
/* AutoComplete highlighted item */
.autocomplete_highlightedListItem
   {
    background-color : #ffff99 ;
    color : black ;
    padding : 1px ;
    }

    /* AutoComplete item */
.autocomplete_listItem
    {
    background-color : window ;
    color : windowtext ;
    padding : 1px ;
   }

我已经解决了我的问题。 问题出在iis中的虚拟目录上。在iis中创建一个新的iis虚拟目录后您将不会遇到上述问题

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM