Question: Our organization has multiple clients. How can we configure the Lucity Administration for Web Apps to prompt for which client to use?
Answer:
<add key ="Clients" value ="clint019 - SQL Eval,clint015 - SQL Dev,clint017 - Oracle"/>
Note: The dropdown list will only show the second part of each value. In the example above, the list would display SQL Eval, SQL Dev, Oracle.
<add name="GBAUserConnectionStringclint015" connectionString="Data Source=GBAMS-DEV-01\Dev;Initial Catalog=GBAUserDev;User ID=gbams_web_gateway;Password=gateway" providerName="System.Data.SqlClient"/>
<add name="GBAUserConnectionStringclint019" connectionString="Data Source=GBAMS-DEV-01\Dev;Initial Catalog=GBAUserEval;User ID=gbams_web_gateway;Password=gateway" providerName="System.Data.SqlClient"/>
<add name="GBAUserConnectionStringclint017" connectionString="Data Source=DEV;User ID=gbams_web_gateway;Password=gateway" providerName="Oracle.DataAccess.Client"/>
<add key ="DefaultClient" value = "clint015 - SQL Dev"/>
See Also |