我是存储过程的新手。
我想更改从存储过程中获得的数据格式。比如某列返回的字符串值为20110918190154
,我想把它改成2011/09/18 19:01:54
。
这就是我执行存储过程并返回 a 的方式DataTable
:
storedProcCommand = new SqlCommand("GetPurchaseHistory", conn);
storedProcCommand.CommandType = CommandType.StoredProcedure;
storedProcCommand.Parameters.Add("@customerID", cCustomerID);
adapter = new SqlDataAdapter(storedProcCommand);
adapter.Fill(allData);
在 GridView 中显示数据如下:
<asp:GridView ID="GridView_PurchaseHistory" runat="server" AutoGenerateColumns="False" >
<Columns>
<asp:BoundField DataField="cTranDateTime" HeaderText="Latest Purchase Date" />
<asp:BoundField DataField="cItemNo" HeaderText="Item Number" />
<asp:BoundField DataField="cDescDef" HeaderText="Description" />
<asp:BoundField DataField="fQty" HeaderText="Total Quantity" />
</Columns>
</asp:GridView>
输出如下:
Latest Purchase Date
20121007193111
20120130171010
20110918190154
我已经编写了子字符串的代码并更改了一次接收 1 个字符串的格式。我想知道是否无论如何我可以将日期存储在临时对象中并相应地更改其格式。或者我是否可以在显示之前进行更改。
非常感谢你..任何建议表示赞赏。