|
Rank: Member Groups: Member
Joined: 4/29/2009 Posts: 10 Points: 30 Location: UK
|
At the moment, we are using integrated windows login to the website.
I have hidden the "SQL Server Authentication" option, but it would be even nicer if the "connect" form did not appear at all, I see there is a Silent Logon - what is the best way of bypassing logon when the user is already authenticated?
|
|
Rank: Administration Groups: Administration
Joined: 9/11/2006 Posts: 605 Points: 649 Location: Enghien Les Bains, France
|
Silent logon now supports Windows Authentication mode. So this is definitively the best solution to do that.
|
|
Rank: Member Groups: Member
Joined: 4/29/2009 Posts: 10 Points: 30 Location: UK
|
Hi,
Thanks, but I think I ned a little help then, the only document i can find dsicusses using it from a control panle - and even then is not very clear how to go about calling it.
|
|
Rank: Administration Groups: Administration
Joined: 9/11/2006 Posts: 605 Points: 649 Location: Enghien Les Bains, France
|
You simply need to send the authentication value using POST method to silentlogon.aspx As soon as your license is for 1 single server, you do not even need to send the db server name.For instance:Code: <form method="post" action="silentlogon.aspx"> <input name="authentication" type="hidden" value="windows" /> <input type="submit" /> </form>
|
|
Guest |