首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

WebService bool 部类没有填写 程序报错

2013-07-09 
WebService bool 类型没有填写程序报错public string GetGiftsInfo(string strOperation, string gname, s

WebService bool 类型没有填写 程序报错


  public string GetGiftsInfo(string strOperation, string gname, string gcid, string minpoint, string maxpoint, bool isnew, bool ishot, string order, int pagesize, int pageindex)


报错内容
System.ArgumentException: 无法将  转换为 System.Boolean。
参数名: type ---> System.FormatException: 该字符串未被识别为有效的布尔值。
   在 System.Boolean.Parse(String value)
   在 System.String.System.IConvertible.ToBoolean(IFormatProvider provider)
   在 System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
   在 System.Web.Services.Protocols.ScalarFormatter.FromString(String value, Type type)
   --- 内部异常堆栈跟踪的结尾 ---
   在 System.Web.Services.Protocols.ScalarFormatter.FromString(String value, Type type)
   在 System.Web.Services.Protocols.ValueCollectionParameterReader.Read(NameValueCollection collection)
   在 System.Web.Services.Protocols.HtmlFormParameterReader.Read(HttpRequest request)
   在 System.Web.Services.Protocols.HttpServerProtocol.ReadParameters()
   在 System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()
[解决办法]
引用:
Quote: 引用:

你想企图将一个空值转换成BOOL?

我就想空的时候做下处理给默认值,怎么写


在传入参数前判断,如果是空,就传入你想要的默认值

热点排行