在我的網站上,當用戶登錄時,他看到一個「我的帳戶」頁面。這些信息保存在SQL數據庫中。僅轉換日期到字符串
C#的部分(相關代碼只):
public partial class myaccount : System.Web.UI.Page
{
public string username;
public string birthday;
protected void Page_Load(object sender, EventArgs e)
{
username = (string)Session["user"];
string sql = "select * from users where username='" + username + "'";
DataTable table = Eitan.ExecuteDataTable("database.mdf", sql);
birthday = table.Rows[0]["birthday"].ToString();
}
}
在HTML相關表格行:
<tr>
<th>Birthday: </th>
<td><%=birthday %></td>
</tr>
一切正常,除了生日值。其顯示爲: 7/8/1964 12:00:00 AM
怎麼可以我擺脫了小時?謝謝!
什麼格式你想完全展示它? –