首页蓝耳朵|小小蓝耳朵广州图书馆外文室英语儿童读物资源介绍网佛教青年之友旧版收集永硕E盘Phonics Short Vowels Game 
写代码时测试数据操作的参数值
所属栏目:ASP.NET(webform)  时间:2009-04-30 17:50  作者:狼子

测试数据源控件:

foreach (System.Data.Common.DbParameter p in e.Command.Parameters)
{
    if (p.DbType.Equals(System.Data.DbType.Int32) || p.DbType.Equals(System.Data.DbType.Decimal))
    {
        Response.Write("<br>set " + p.ParameterName + " = " + (p.Value == null ? "null" : p.Value.ToString()));
    }
    else
    {
        Response.Write("<br>set " + p.ParameterName + " = '" + (p.Value == null ? "null" : p.Value.ToString()) + "'");
    }
}
e.Cancel = true;

测试数据控件:

foreach (System.Collections.DictionaryEntry entry in e.Values)
        {
            Response.Write("<br>" + entry.Key.ToString() + " = " + (entry.Value == null ? "null" : entry.Value.ToString()));
        }
e.Cancel = true;


小楼宝宝的涂鸦花花(Imitater)的博客起名称骨测字皖ICP备06000023号-17