Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TAMeB Authentication Against .NET Website

Status
Not open for further replies.

JTechMan

Programmer
Jun 15, 2009
23
0
0
CA
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:

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!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top