I am building a Log-In page for a friend so they can view some material him and his team are doing online. I have been using ASP and Dreamweaver to build the site and I am an encountering this problem:
When I view the site offline locally [using IIS] I can log-in, no problem. However when I view the ASP pages online using my ASP host the log-in fails. I had a look at the files I uploaded and they are identical to the ones I have on my localhost but I have noticed that by looking at the index.asp file online some of the code has changed regards the 'POST=' action. The code has gone from this:
<td colspan="2"> <form ACTION="<%=MM_LoginAction%>" method="POST" name="form1" id="form1">
<table width="33%" border="0" align="center" cellpadding="3" cellspacing="0">
to this:
<td colspan="2"> <form ACTION="/Index.asp" method="POST" name="form1" id="form1">
<table width="33%" border="0" align="center" cellpadding="3" cellspacing="0">
...My basic question obviously, is how do I sort this?!!
The site being referred to is http://spocking.somee.com/ if you wish to see first hand.
Thanks for any help.
Tom