I’m designing an eform that submits information into a CSV. I need to display the current user’s sAMAccountName and the Datetime.Today in two of the text fields.
Any idea of how this would be done?
I’ve been trying: c#
public string UserName { get { return Session["UserName"]; } }
to:
<asp:TextBox ID="UserName" runat="server" Width="44px" ReadOnly="true"></asp:TextBox>
You can pre-populate input values in your form in the
Page_Loadevent: