我只是想将来自 eform 后端的变量显示到前端的文本框中,这就是我到目前为止所拥有的。
.aspx.cs
if (!Page.IsPostBack)
{
string username = Request.ServerVariables["AUTH_USER"];
}
并在 .aspx 中尝试输出变量,例如:
<asp:TextBox ID="username" runat="server" Width="44px" ReadOnly="true" Text='<%username %>'></asp:TextBox>