asp.net – 无法自动进入服务器.无法确定停止位置

前端之家收集整理的这篇文章主要介绍了asp.net – 无法自动进入服务器.无法确定停止位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个带有WinForms项目的VB.NET VS2010解决方案,它在同一个解决方案中调用一个网站项目.

我可以进入这个web方法
<的WebMethod()>公共函数GetStartUpData()作为DataSet

和其他Web方法,但不是以下方法.我想知道它是否与使用Nullable类型参数的唯一Web方法有关.

方法有效,我只是不能介入它.如果我尝试,我得到错误

Unable to automatically step into server. unable to determine a stopping location

这是一个错误吗?有解决方法吗?

@H_403_15@<WebMethod()> Public Function RetrieveOrdersByFilter( _ ByVal customerId As Nullable(Of Integer),_ ByVal fromDate As Nullable(Of Date),_ ByVal toDate As Nullable(Of Date),_ ByVal fromStatusCodeId As Nullable(Of Integer),_ ByVal toStatusCodeId As Nullable(Of Integer)) As DataSet

解决方法

对于那些进入这里的人,我的解决方案是将输出设置为“Debug”..傻我知道……

通过Leniel的链接找到了:)

原文链接:https://www.f2er.com/aspnet/248623.html

猜你在找的asp.Net相关文章