%@ Language=VBScript %>
<%
Response.Charset = "utf-8"
Session.Codepage = 1252
if not IsNull(Request("idl")) and Request("idl") <> "" then
Session("idl") = Request("idl")
end if
if IsNull(Session("idl")) or Session("idl") = "" or CInt(Session("idl")) < 1 then
Session("idl") = "1"
end if
cliente = "il cliente"
criticita = "le criticità"
requisiti = "i requisiti"
benefici = "i benefici"
download = "Scarica il PDF"
if Session("idl") = "2" then
cliente = "the client"
criticita = "critical conditions"
requisiti = "the requirements"
benefici = "the benefits"
download = "download PDF"
end if
%>
ebilling
<%
Set cmdCase = Server.CreateObject("ADODB.Command")
cmdCase.CommandType = 1
Set cmdCase.ActiveConnection = Session("CONNECTION")
cmdCase.CommandText = "SELECT * FROM casehistory WHERE id_casehistory = " & Request("idc")
Set rsCase = Server.CreateObject("ADODB.Recordset")
rsCase.Open cmdCase, , 1, 3
if not(rsCase.BOF and rsCase.EOF) then
%>
<%= cliente%>
<%=rsCase("cliente")%>
<%
if not IsNull(rsCase("esigenze")) and rsCase("esigenze") <> "" then
%>
<%= criticita%>
<% if Session("idl") = "1" then%>
<% end if%>
<% if Session("idl") = "2" then%>
<% end if%>
<%=rsCase("esigenze")%>
<%
end if
%>
<%
if not IsNull(rsCase("requisiti")) and rsCase("requisiti") <> "" then
%>
<%= requisiti%>
<%=rsCase("requisiti")%>
<%
end if
%>
<%
if not IsNull(rsCase("benefici")) and rsCase("benefici") <> "" then
%>