Yes it is enabled and i am sure this is working as i do have other asp applications running fine on azure.
I get the error when i click submit button on my login screen (code is below) after inserting a valid username and pwd.
<html>
<head>
<title>Login Screen</title></head>
<SCRIPT LANGUAGE="JavaScript" src="_ScriptLibrary/RS.HTM"></SCRIPT>
<SCRIPT LANGUAGE="JavaScript"> RSEnableRemoteScripting();</SCRIPT>
<script language="javascript">
function LogOnUser() {
//check if a valid user
var ok = true
var dbadm
var str_err = "Please Enter"
var lname = document.frmlogon.txt_lname.value
var pwd = document.frmlogon.txt_pwd.value
if (lname == "")
{
str_err = str_err + " UserID/Email"
ok = false
}
if (pwd == "")
{
str_err = str_err + " Password"
ok = false
}
if (ok)
{
var co = RSExecute("allfunc.asp","findadmin",lname,pwd);
var retval = co.return_value;
//alert(retval)
if (retval == '0') {
alert("Your entry is invalid. Please enter a valid userid and password")
document.frmlogon.txt_pwd.value='';
document.frmlogon.txt_pwd.focus();
}
else
{ document.frmlogon.action = 'start.asp';
document.frmlogon.submit();
}
}
else
alert(str_err)
}
</script>
<body bgcolor="silver" onLoad="document.frmlogon.txt_lname.focus()">
<form name="frmlogon" method="post">
<br>
<p>
<p>
<p><br>
<p>
<table border="0" align="center" width="50%" cellpadding="0" cellspacing="0">
<tr align="middle">
<td align="middle"><font color="maroon" size="5" name="Times New Roman"><b><u></u></b></font></td>
</tr>
</table>
<br>
<p>
<p>
<p><br>
<p>
<table border="4" align="center" width="40%" cellspacing="0" cellpadding="0">
<tr>
<td>Last Name</td>
<td><input name="txt_lname" maxlength="30" selected></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="txt_pwd" maxlength="20"></td>
</tr>
<tr>
</tr>
<tr>
<td>
<tr>
</tr>
</table>
<table align="center">
<tr>
<td>
<INPUT name="btnLogin" type="submit" value="Login" onclick="javascript:LogOnUser()">
</tr>
</td>
</form>
</body>
</html>
Error as shown below:

Any help or advise would be highly appreciated.
M.O