我正在设计一个将信息提交到CSV的eform。我需要在两个文本字段中显示当前用户的sAMAccountName
和Datetime.Today
。
知道如何做到这一点?
我一直在尝试:c#
public string UserName { get { return Session["UserName"]; } }
为:
<asp:TextBox ID="UserName" runat="server" Width="44px" ReadOnly="true"></asp:TextBox>
答案 0 :(得分:1)
您可以在Page_Load
事件中预先填充表单中的输入值:
protected void Page_Load(object sender, EventArgs e) {
UserName.Text = "my value";
TxtCurrentDate.Text = DateTime.Today.ToString();
}
答案 1 :(得分:0)
只是通过另一点信息快速扩充这个,我最初将Page_Load cmds添加到codebehind的Page_load事件中,确保在.aspx页面上处理所有预填充的文本框。
全部包含在.aspx
中protected void Page_Load(object sender, EventArgs e) { txtDate.Text = DateTime.Now.ToString(); }
<td><asp:TextBox ID="txtDate" runat="server" Width="181px" ReadOnly="true"></asp:TextBox></td>
再次感谢有用的回复mellamokb