关于<%# Eval("createTime"%>的时间格式转换

简介: 出现问题: 在ASP.NET中,前台页面在调用后台数据库时间时,使用<%# Eval("createTime"%>,发现时间显示的是数据库的时间类型"2015/10/29 13:40:01",想要改成"2015-10-29"的时间显示类型。 解决方法: 在<%# Eval("createTime"%>里添加格式样式,修改后如下: <%# Eval("c

出现问题:

在ASP.NET中,前台页面在调用后台数据库时间时,使用<%# Eval("createTime"%>,发现时间显示的是数据库的时间类型"2015/10/29 13:40:01",想要改成"2015-10-29"的时间显示类型。

解决方法:

在<%# Eval("createTime"%>里添加格式样式,修改后如下:

<%# Eval("createTime", "{0:yyyy-MM-dd}")%>

目录
相关文章
|
JavaScript 编译器
模块 &quot;&quot;element-plus&quot;&quot; 没有导出的成员 &quot;ElMessage&quot;。你是想改用 &quot;import ElMessage from &quot;element-plus&quot;&quot; 吗?
模块 &quot;&quot;element-plus&quot;&quot; 没有导出的成员 &quot;ElMessage&quot;。你是想改用 &quot;import ElMessage from &quot;element-plus&quot;&quot; 吗?
372 0
|
自然语言处理
合同结构化文书解析失败,请联系管理员排查:{&quot;code&quot;:3001,&quot;message&quot;:&quot;File transform error&quot;,&quot;success&quot;:false,&quot;tracerId&quot;:&quot;requestId&quot;}报错处理
在使用自然语言处理自学习平台时,标注任务需要上传标注数据,但是使用doc格式上传文件后开始标注时出现了此提示,此篇文章简单介绍下此问题的处理方式。
718 0
合同结构化文书解析失败,请联系管理员排查:{&quot;code&quot;:3001,&quot;message&quot;:&quot;File transform error&quot;,&quot;success&quot;:false,&quot;tracerId&quot;:&quot;requestId&quot;}报错处理
&nbsp; &quot; &amp; &lt; &gt 等html字符转义
常用表: No. 文字表記 10进制 16进制 文字   Comment 001 &quot; &#34; &#x22; """   quotation mark = APL quote 002 &amp; &#38; &#x26; "&"   ampersand 003 &lt; ...
2439 0
|
缓存
Integer.parseInt(&quot;&quot;) Integer.valueOf(&quot;&quot;)和new Integer(&quot;&quot;)之间的区别
把一个String转换成int有Integer.parseInt("")、 Integer.valueOf("")和new Integer("")这么几种方式,它们之间有什么区别呢?我们可以分别看一下它们的源码 //Integer.parseInt("") public static int parseInt(String s) throws NumberFormatExc
1551 0
&quot;catalog&quot; 与 &quot;category&quot; 的区别
catalog 中文翻译为: 目录; category 中文翻译为: 类别; catalog 是有一定顺序的条目(item)列表,或者是分类系统列表。 还可以用作动词,表示编目,将条目放置到某个目录下。
1630 0
|
Oracle 关系型数据库 中间件
15-5-23 下午02时22分58秒 CST&gt; &lt;Info&gt; &lt;Management&gt; &lt;BEA-141281&gt; &lt;unable to get file lock, will retry ...&gt;
 A-141281&gt; &lt;unable to get file lock, will retry ...&gt;   http://gdutlzh.blog.163.com/blog/static/164746951201291903824812/I ran into this error the first time I restarted Weblogic on on
1750 0
实现string类的操作符重载 + = &gt; &lt; == != &gt;&gt; &lt;&lt;
<pre code_snippet_id="596931" snippet_file_name="blog_20150203_1_6205569" name="code" class="objc">//MyString.h #pragma once #include &lt;iostream&gt; using namespace std; class MyString { priva
1384 0