asp.net 中 如何使DATAGRID绑定的ACCESS资料库只显示日期?
我现在的状况是,Access中有一栏为时间(只有如2010/12/21的日期格式而无具体时间),但是在与datagrid绑定时显示的表单中却在日期后面出现了00:00:0...
我现在的状况是,Access中有一栏为时间(只有如2010/12/21的日期格式而无具体时间),但是在与datagrid绑定时显示的表单中却在日期后面出现了00:00:00 要如何去掉呢?
我是用记事本写的源代码 想知道从源码中如何解决问题呢? 展开
我是用记事本写的源代码 想知道从源码中如何解决问题呢? 展开
4个回答
展开全部
这是你在建表时,选择了datetime类型造成的,建议该还字段类型,希望对你有所帮助
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
2种方法,第一:在绑定的时候有事件,这个时候可以处理.
第二:在绑定之后处理,这样会比较方便.
在cs 文件中写一个public 的方法
/// <summary>
/// 从字符串的指定位置截取指定长度的子字符串
/// </summary>
/// <param name="str">原字符串</param>
/// <param name="startIndex">子字符串的起始位置</param>
/// <param name="length">子字符串的长度</param>
/// <returns>子字符串</returns>
public static string CutString(string str,int startIndex,int length)
{
if (startIndex >= 0)
{
if (length < 0)
{
length = length * -1;
if (startIndex - length<0)
{
length = startIndex;
startIndex = 0;
}
else
{
startIndex = startIndex - length;
}
}
if (startIndex > str.Length)
{
return "";
}
}
else
{
if (length < 0)
{
return "";
}
else
{
if (length + startIndex > 0)
{
length = length + startIndex;
startIndex = 0;
}
else
{
return "";
}
}
}
if (str.Length - startIndex < length)
{
length = str.Length - startIndex;
}
try
{
return str.Substring(startIndex,length);
}
catch
{
return str;
}
}
,然后再grid的前台源代码中找到<%#DataBinder.Eval()%> 加入这个函数
<%#CutString(DataBinder.Eval().ToString(),12)%> 这样就可以截取了
第二:在绑定之后处理,这样会比较方便.
在cs 文件中写一个public 的方法
/// <summary>
/// 从字符串的指定位置截取指定长度的子字符串
/// </summary>
/// <param name="str">原字符串</param>
/// <param name="startIndex">子字符串的起始位置</param>
/// <param name="length">子字符串的长度</param>
/// <returns>子字符串</returns>
public static string CutString(string str,int startIndex,int length)
{
if (startIndex >= 0)
{
if (length < 0)
{
length = length * -1;
if (startIndex - length<0)
{
length = startIndex;
startIndex = 0;
}
else
{
startIndex = startIndex - length;
}
}
if (startIndex > str.Length)
{
return "";
}
}
else
{
if (length < 0)
{
return "";
}
else
{
if (length + startIndex > 0)
{
length = length + startIndex;
startIndex = 0;
}
else
{
return "";
}
}
}
if (str.Length - startIndex < length)
{
length = str.Length - startIndex;
}
try
{
return str.Substring(startIndex,length);
}
catch
{
return str;
}
}
,然后再grid的前台源代码中找到<%#DataBinder.Eval()%> 加入这个函数
<%#CutString(DataBinder.Eval().ToString(),12)%> 这样就可以截取了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ToString("yyyy-MM-dd")
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询