How to pre-populate domain name in Citrix Director logon page

  • Replace <asp:TextBox ID=”Domain” runat=”server” CssClass=”text-box” onfocus=”showIndicator(this);”

    with

    <asp:TextBox ID=”Domain” Text=”domain.local” readonly=”true” runat=”server” CssClass=”text-box” onfocus=”showIndicator(this);”

    Where domain.local is your actual domain.

    For Director 7.6.3 replace:

    <asp:TextBox ID=”Domain” runat=”server” with

    <asp:TextBox ID=”Domain” Text=”mydomain” readonly=”true” runat=”server”

  • Related:

    • No Related Posts