Tenho um código hiper simples e básico para mostrar uma tabela e em uma linha outra tabela, 100% de altura. Tinha esta página feita no FrontPage... e estava Ok!
E ao gerar pelo Visual Studio, e rodar, percebi que não funcionava nem no IE8 nem no Firefox...
Pergunta
devhtml
Olá pessoal!
Tenho um código hiper simples e básico para mostrar uma tabela e em uma linha outra tabela, 100% de altura. Tinha esta página feita no FrontPage... e estava Ok!
E ao gerar pelo Visual Studio, e rodar, percebi que não funcionava nem no IE8 nem no Firefox...
Ai resolvi comentar a linha:
<%--<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">--%>
e funcionou.
Agora, como fazer funcionar no Visual Studio mesmo com esta linha que é adicionada por default ao criar uma WebForm.aspx?
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="teste.aspx.cs" Inherits="WebApplication1.teste" %>
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<table border="1" cellspacing="0" cellpadding="0" style="width: 100%; height: 100%">
<tr>
<td bgcolor="#00FF00" style="width: 100%; height: 74px"> </td>
</tr>
<tr>
<td style="width: 100%; height: 100%" bgcolor="#FF00FF">
<table border="1" cellpadding="0" cellspacing="0" style="width: 100%; height: 100%">
<tr>
<td width="100%" bgcolor="#0000FF"> </td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Link para o comentário
Compartilhar em outros sites
2 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.