私は単純に、eform のバックエンドからフロントエンドのテキスト ボックスに変数を表示しようとしています。
.aspx.cs
if (!Page.IsPostBack)
{
string username = Request.ServerVariables["AUTH_USER"];
}
そして.aspx imで次のような変数を出力しようとしています:
<asp:TextBox ID="username" runat="server" Width="44px" ReadOnly="true" Text='<%username %>'></asp:TextBox>