本文介绍了日期格式更改为2014年11月16日,而不是2014年11月16日的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是代码。





请协助纠正上述预期的格式







 SqlCmd.Parameters。添加  @ ZDATE_LOAN,System.Data.SqlDbType。 VarChar  12 ); 
SqlCmd.Parameters [ @ ZDATE_LOAN]。Direction = System.Data.ParameterDirection。 输出;







  var  dts = SqlCmd.Parameters [  @ZDATE_LOAN] Value.ToString(); 
txt_Date_Of_Loan.Text = String .Format( {0:dd,MMMM,yyyy},dts);







谢谢

解决方案



This are the codes.


Please assist to correct the format to the expected above



SqlCmd.Parameters.Add("@ZDATE_LOAN", System.Data.SqlDbType.VarChar, 12);
SqlCmd.Parameters["@ZDATE_LOAN"].Direction = System.Data.ParameterDirection.Output;




var dts = SqlCmd.Parameters["@ZDATE_LOAN"].Value.ToString();
             txt_Date_Of_Loan.Text = String.Format("{0:dd, MMMM, yyyy}", dts);




Thanks

解决方案



这篇关于日期格式更改为2014年11月16日,而不是2014年11月16日的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-24 03:07