Hi,
I've run into something new. On one of our web servers running IIS 6 I made a new site and extended FrontPage extensions. However, now when I try to administer them, I get a "login" type of page which is kind of pink with a white box "Authenticate with Login and Password". It's called "auth.asp"
I've only been able to find a few references to one part of the html which has "ERIC_RESPONSE_OK" in it. Strikes me as odd, so I thought I would post a photo and then the codebehind to see if any of the experts here can provide some illumination. I've made many sites on this server, and this is the first time I've run into it:
- thank you in advance
David
---------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Authentication</title>
<link href="/style.asp" type="text/css" rel="STYLESHEET">
<script type="text/javascript">
<!--
if (top.frames.length!=0)
top.location=self.document.location;
// -->
</script>
<link rel="SHORTCUT ICON" href="favicon.ico">
</head>
<body class="auth">
<form action="auth.asp" method="POST">
<input type="hidden" name="nickname" value="">
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr><td colspan="2"> </td></tr>
<tr class="authLogo" >
<td colspan="2" align="center">
<img src="/logo.gif" alt="LOGO">
</td>
</tr>
<tr><td colspan="2" align="center"><br><span class="rsp_message"> </span><!-- response_code_begin ERIC_RESPONSE_OK response_code_end response_msg_begin response_msg_end --><br></td></tr>
<tr>
<td colspan="2" align="center" valign="top">
<table class="authInner" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="corner_lt.jpg" width="45" height="45" alt=""></td>
<td class="authHeading" align="center">Authenticate with Login and Password!</td>
<td><img src="corner_rt.jpg" width="45" height="45" alt=""></td>
</tr>
<tr>
<td> </td>
<td>
<table class="authInner" border="0" cellpadding="10" cellspacing="0">
<tr>
<td align="right"><div class="bold">Username</div></td>
<td align="left"><input type="text" name="login" value="" maxlength="32" size="32"></td>
</tr>
<tr>
<td align="right"><div class="bold">Password</div></td>
<td align="left"><input type="password" name="password" value="" maxlength="32" size="32"></td>
</tr>
</table>
</td>
<td> </td>
</tr>
<tr>
<td><img src="corner_lb.jpg" width="45" height="45" alt=""></td>
<td align="center"><input type="image" src="button_login.en.gif" name="action_login" value="Login" align="middle">
</td>
<td><img src="corner_rb.jpg" width="45" height="45" alt=""></td>
</tr>
</table>
</table>
</form>
</body>
</html>