1

我以 .dll 形式提供 .net 用户控件。

从我的外部 IIS 6 服务器提供服务时,它在 IE7 中显示良好。

但是,当从 IIS 5 提供服务时,该控件将呈现为一个文本区域控件,其侧面带有一个滚动条控件

我查看了 http 响应 - IIS5 正在为此提供服务:

<html><head><title>Error</title></head><body>
 The specified procedure could not be found. 
</body></html>

任何想法为什么会这样?

我尝试将以下 mime 类型添加到 HTTP 标头配置中:

  .dll = application/x-msdownload

  .dll.config = text/html

4

1 回答 1

0

哦,伙计!

.dll 没有在服务器上注册!!!

regasm mydll.dll /tlb

于 2009-06-09T07:39:22.217 回答