在线咨询

QQ咨询

微信关注

微博关注

源码信息

最新源码评论

  • 评论者:天晴
    天晴(作者) 发表于:2008-03-01 18:08:00

    修改了MyShop其中的几处错误,免得误人子弟。:lol <br/>如果版主不允许发这贴子,请用上传附件替换掉<a href="http://www.51aspx.com/CV/MyShop" target="_blank"><font color="#339900">http://www.51aspx.com/CV/MyShop</font></a>中的附件

    9 个回复
    • 回复者:hakuci
      hakuci(用户)回复于:2008-04-14 20:42:00

      好像找不到 Utils.StrToInt<br/>还有SQLServerDAL 什么时候开源 <br/>关注中.......

    • 回复者:hakuci
      hakuci(用户)回复于:2008-04-07 12:04:00

      有Utils.StrtoInt这个类吗?

    • 回复者:moonmodel
      moonmodel(用户)回复于:2008-04-28 01:02:00

      今日订单有问题<br/>行 217:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DataSet dataset = new DataSet();<br/>行 218:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (range == &quot;today&quot;)<br/>行 219:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dataset = order.GetTodayOrder(userId);<br/>行 220:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<br/>行 221:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dataset = order.GetDataSet(userId);

    • 回复者:米高佐敦
      米高佐敦(用户)回复于:2008-05-03 13:00:00

      会员登陆也有问题,还有购物车删除也存在刷新的问题,有时删除要点击按两次才行!

    • 回复者:天晴
      天晴(作者)回复于:2008-03-03 19:30:00

      错误:web\shop\payment.aspx.cs和web\admin\shop\Order_index.aspx.cs中数据发生错误<br/>原因:因为在记事本里改的,一时疏忽大意,改错了。<br/>解决方法:<br/>将 if (Utils.StrtoInt(paymentTypeDataset.Tables[0].Rows<i>[&quot;isDisabled&quot;]),1) == 0)<br/><br/>改为if (Utils.StrtoInt(paymentTypeDataset.Tables[0].Rows<i>[&quot;isDisabled&quot;],1) == 0)<br/><br/>将 if (Utils.StrtoInt(paymentTypeDataset.Tables[0].Rows<i>[&quot;isDefault&quot;]),0) == 1)<br/>改为 if (Utils.StrtoInt(paymentTypeDataset.Tables[0].Rows<i>[&quot;isDefault&quot;],0) == 1)<br/><br/>将 if (Utils.StrtoInt(deliverTypeDataset.Tables[0].Rows<i>[&quot;isDisabled&quot;],1) == 0)<br/><br/>改为if (Utils.StrtoInt(deliverTypeDataset.Tables[0].Rows<i>[&quot;isDisabled&quot;]),1) == 0)<br/><br/>将 if (Utils.StrtoInt(deliverTypeDataset.Tables[0].Rows<i>[&quot;isDefault&quot;],0) ==&nbsp;&nbsp;1 )<br/>改为 if (Utils.StrtoInt(deliverTypeDataset.Tables[0].Rows<i>[&quot;isDefault&quot;]),0) ==&nbsp;&nbsp;1 )

    • 回复者:天晴
      天晴(作者)回复于:2008-04-08 18:23:00

      <table style="width: auto;"><tr><td style="border:none;"><div class="quote"><blockquote> 原帖由 <b>hakuci</b> 于 2008-4-7 12:04:00 发表<br/>有Utils.StrtoInt这个类吗? </blockquote></div></td></tr></table><br/><br/>是Utils.StrToInt

    • 回复者:天晴
      天晴(作者)回复于:2008-05-01 16:49:00

      <table style="width: auto;"><tr><td style="border:none;"><div class="quote"><blockquote> 原帖由 <b>moonmodel</b> 于 2008-4-28 1:02:00 发表<br/>今日订单有问题<br/>行 217:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DataSet dataset = new DataSet();<br/>行 218:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (range == &quot;today&quot;)<br/>行 219:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dataset = order.GetTodayOrder(userId);<br/>行 220:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<br/>行 221:...... </blockquote></div></td></tr></table><br/><br/>能说得具体些吗?谢谢

    • 回复者:tjdxlmy
      tjdxlmy(用户)回复于:2008-04-02 11:19:00

      编译错误 <br/>说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。 <br/><br/>编译器错误信息: CS0117: “MyShop.BLL.Utils”并不包含“StrtoInt”的定义<br/><br/>源错误:<br/><br/> <br/><br/>行 83:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; drpPaymentType.Items[j].Value = paymentTypeDataset.Tables[0].Rows<i>[&quot;typeId&quot;].ToString();<br/>行 84: <br/>行 85:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (Utils.StrtoInt(paymentTypeDataset.Tables[0].Rows<i>[&quot;isDisabled&quot;], 1) == 0)<br/>行 86:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; drpPaymentType.SelectedIndex = j;<br/>行 87:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; j++;

    • 回复者:tongling15
      tongling15(用户)回复于:2008-05-05 13:56:00

      Utils.StrToInt<br/>没有这个啊