Hi There,
Seeing as there is no TAM specific forum I was hoping that someone here might be familiar enough to help! We have a .net website that requires you to log in via a login form. Pretty basic stuff: username, password, submit button, post, and action. Yet when the other half tries to set up the junction (I know little about this part) they keep getting an error message that states the "No HTML form for SSO" .
I have tried everything that I can think of on the site development end so any direction or help would be greatly appreciated!
In case you need to see it here is the simple form code:
Thanks!
Seeing as there is no TAM specific forum I was hoping that someone here might be familiar enough to help! We have a .net website that requires you to log in via a login form. Pretty basic stuff: username, password, submit button, post, and action. Yet when the other half tries to set up the junction (I know little about this part) they keep getting an error message that states the "No HTML form for SSO" .
I have tried everything that I can think of on the site development end so any direction or help would be greatly appreciated!
In case you need to see it here is the simple form code:
Code:
<form name="loginform" method="post" action="pagethatvalidates.aspx">
<table>
<tr>
<td>
Username:
</td>
<td>
<input type="text" value="" name="User" />
</td>
</tr>
<tr>
<td>
Password:
</td>
<td>
<input type="password" value="" name="Password" />
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Submit" />
</td>
</tr>
</table>
</form>
Thanks!