Problem rolling out ADO.Net Data Service application to IIS

后端 未结 3 1522
渐次进展
渐次进展 2021-02-04 08:15

I am adding a ADO.Net Data Service lookup feature to an existing web page. Everything works great when running from visual studio, but when I roll it out to IIS, I get the foll

3条回答
  •  执笔经年
    2021-02-04 08:37

    For me the error was caused by two methods having the same name (unintended overloading).

    Overloading is not supported but type 'abc' has an overloaded method 'Void SubmitCart(System.String, Int32)'.

    I found out by running the service in debug mode.

提交回复
热议问题