Hola de nuevo, muchas gracias de nuevo por la ayuda, aunque no se si estoy haciendo algo mal, pero lo del Estado no me funciona me da el siguiente error.
error de compilacion
Linea 53: <asp:Label ID="Lbl_Estado" runat="server" Text='<%#Object.Equals(null, Eval("Estado")) ? "Disponible" : "Alquilado" %>' />
Te parte del codigo, por si en la inmensidad de tu bondad quieres ayudarme.
Muchas gracias por adelantado.
El siguiente es el enlace donde puedes ver lo que tengo hecho hasta ahora, es una pagina htm pero con un iframe que dirige al aspx.
Muchas Gracias por todo.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Videoclub Garrido</title>
<style type="text/css">
#form1
{
font-family: "Times New Roman", Times, serif;
color: #000000;
background-color: #0099FF;
}
</style>
</head>
<body bgcolor="#0099ff"; aling="center">
<form id="form1" runat="server"
.....................................
<ItemTemplate>
<td runat="server" style="background-color:#DCDCDC;color: #000000;">
<asp:Label ID="ImagenLabel" runat="server" Text='<%# Eval("Imagen") %>' />
<br />
Nº:
<asp:Label ID="NºLabel" runat="server" Text='<%# Eval("Nº") %>' />
<br />
<br />
Titulo:
<asp:Label ID="TituloLabel" runat="server" Text='<%# Eval("Titulo") %>' />
<br />
<br />
Categoría:
<asp:Label ID="CategoríaLabel" runat="server" Text='<%# Eval("Categoría") %>' />
<br />
<br />
Genero:
<asp:Label ID="GeneroLabel" runat="server" Text='<%# Eval("Genero") %>' />
<br />
<br />
Sipnosis:
<asp:Label ID="SipnosisLabel" runat="server" Text='<%# Eval("Sipnosis") %>' />
<br />
<br />
Estado:
<asp:Label ID="EstadoLabel" runat="server" Text='<%# Eval("Estado") %>' />
<br />
<br />
Precio_Alquiler:
<asp:Label ID="Precio_AlquilerLabel" runat="server"
Text='<%# Eval("Precio_Alquiler") %>' />
<br />
<br />
Precio_Venta:
<asp:Label ID="Precio_VentaLabel" runat="server"
Text='<%# Eval("Precio_Venta") %>' />
</td>
</ItemTemplate>
</asp:ListView>
<asp:AccessDataSource ID="AccessDataSource1" runat="server"
DataFile="~/App_Data/BENACAZON.mdb"
SelectCommand="SELECT Item_Info.IR_ImageMain AS Imagen, Items_Rental.Ref AS Nº, Items_Rental.Title AS Titulo, Items_Rental.Rental_Category AS Categoría, Item_Info.Genre AS Genero, Item_Info.IR_Description AS Sipnosis, Current_Loans.Date_Created AS Estado, Items_Rental.Rental_Price AS Precio_Alquiler, Items_Rental.Selling_Price AS Precio_Venta FROM ((Items_Rental LEFT OUTER JOIN Item_Info ON Items_Rental.Title_Ref = Item_Info.Title_Ref) LEFT OUTER JOIN Current_Loans ON Items_Rental.Ref = Current_Loans.Ref) GROUP BY Item_Info.IR_ImageMain, Items_Rental.Ref, Items_Rental.Title, Items_Rental.Rental_Category, Item_Info.Genre, Item_Info.IR_Description, Current_Loans.Date_Created, Items_Rental.Rental_Price, Items_Rental.Selling_Price HAVING (Item_Info.Genre <> ':porno:') ORDER BY Items_Rental.Title">
</asp:AccessDataSource>