Forum Moderators: not2easy
Something Like this:
<label for="site">Site</label>
<select name="site" id="site">
<option value="">Choose Site...</option>
<option value="site1">Sub site 1</option>
<option value="site2">Sub site 2</option>
</select>
Hope this helps, :)
Elijah
You could always make an "intermediate" page that (using the first Poster's example) looks for what site they are choosing to log into and redirects the user there with the login information.
In ASP this would be something like:
<%
username = request.form("username")
Password = request.form("password")
ServiceTheyWant = request.form("ServiceTheyWant")
If ServiceTheyWant = "ServiceA" Then
' authenticate, set session/cookie/whatever
response.redirect "/serviceapages"
ElseIf ServiceTheyWant = "ServiceB" Then
' authenticate, set session/cookie/whatever
response.redirect "/servicebpages"
Else
response.write "You didn't say where you wanted to go, dummy"
End If
%>
Then just do as many ElseIf's for every possible service. No need to have multiple forms on the same page.