Salve a tutti, la premessa è che di sql e di asp non ne capisco granchè!
Detto questo ho fatto la migrazione da un vecchissimo server con windows xp ad un nuovo server con windows 2008 server r2.
All'interno del vecchio server c'era un'applicazione...credo scritta in asp che girava sotto iis.
Ho riportato sul nuovo server la cartella dell'applicazione e ho settato iis 7.
L'applicazione in teoria funziona ma non esegue l'accesso, presumo dovesse essere agganciata a qualche db sql.
Sono riuscito tramite sql management e i 2 file mdf e ldb a ricollegare il db, adesso ho fatto il backup, ma non so come farglielo passare a is 7 in modo che l"applicazione si colleghi al db.
Qui un esempio di come appare l'applicazione, chiaramente non funzionante xche sul web.
"
http://win.lofacciamonoi.it/cclazio/utente/cc.as"
Grazie
P.S. la ditta che fece quest'applicazione tanti anni fa non esiste più e sembra impossibile risalire a coloro che l'hanno programmata.
<%@Language="VBscript"%>
<%
Response.expires=-1
Response.AddHeader "Pragma", "No-Cache"
Response.AddHeader "cache-control", "Private"
Response.CacheControl = "no-cache"
Application("StringaConnessione") = "Provider=SQLOLEDB.1;Persist Security Info=True;User ID=sa;Password=avenger;Initial Catalog=circolo;Data Source=SERVER-HP\SQLEXPRESS"
Application("LICENZA") = "Circolo"
session.timeout=120
%>
<html>
<head>
<title><% =Application("LICENZA") %></title>
</head>
<script language="javascript" src="value.js"></script>
<script language="javascript">
function validateForm(frm)
{
if(!isPassword(frm.Uid.value, "User Name")) return false;
if(!isPassword(frm.Pwd.value, "Password")) return false;
}
</script>
<body>
<%dim path_oggetti%>
<% path_oggetti="../images/"%>
<form action="ctrl_cc.asp" method="POST" target="_top" Onsubmit="return validateForm(this)" name="frm" id="frm">
<table border="0" width="100%" height="100%">
<tr>
<td width="276">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="<%=path_oggetti%>cclazio.jpg" height="189" width="300"></td>
</tr>
</table>
</td>
<td align="middle">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="<%=path_oggetti%>SSx.jpg" valign="middle" align="center" height="10" width="10"></td>
<td bgcolor="#0081B1" valign="middle" align="center" width="350" height="10"></td>
<td background="<%=path_oggetti%>SDx.jpg" valign="middle" align="center" height="10" width="10"></td>
</tr>
<tr>
<td bgcolor="#0081B1" valign="middle" align="center" width="10" height="340"></td>
<td>
<table border="0" width="100%" height="100%">
<tr>
<td height="40" colspan="2" valign="bottom" align="left"> <b><font face="Arial" size="4">Login utente</font></b> </td>
<td height="40" colspan="2" valign="middle" align="center">
<table border="0" width="136" height="56">
<tr>
<td><img src="<%=path_oggetti%>/logo.jpg" height="69" width="80"> </td>
</tr>
</table>
<tr>
<td height="2" colspan="4" valign="top"> <hr color="#0081B1"> </td>
</tr>
<tr valign="bottom" height="40">
<td width="30"> </td>
<td> <b><font face="Arial" size="1"> Nome utente: </font></b> </td>
<td> <input name="Uid" size="20" maxlength="10"> </td>
<td width="30"> </td>
</tr>
<tr valign="top" height="40">
<td width="30"> </td>
<td> <b><font face="Arial" size="1"> Password: </font></b> </td>
<td> <input name="Pwd" type="password" size="20" maxlength="10"> </td>
<td width="30"> </td>
</tr>
<tr>
<td height="2" colspan="4" align="botton"> <hr color="#0081B1"> </td>
</tr>
<tr>
<td height="20" colspan="2"> </td>
<td height="20" colspan="2" valign="top" align="middle"> <input type="submit" name="registra" value="Prosegui >>"> </td>
</tr>
<tr>
<td height="20" colspan="4" >
<table border="0" cellpadding="0" cellspacing="0" align="left">
<tr>
<td align="right" valign="top"> <img border="0" src="<%=path_oggetti%>play.jpg"> </td>
<td align="left" valign="middle"> <font face="Arial" size="1"> <b> <a href="memo.asp"> Dimenticato il vostro account?</a> </b> </font> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td bgcolor="#0081B1" valign="middle" align="center" width="10" height="300"></td>
</tr>
<tr>
<td background="<%=path_oggetti%>PSx.jpg" valign="middle" align="center" height="10" width="10"></td>
<td bgcolor="#0081B1" valign="middle" align="center" width="350" height="10"></td>
<td background="<%=path_oggetti%>PDx.jpg" valign="middle" align="center" height="10" width="10"></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>