海鸽 is My Lover!!
书上的例子是用记事本写的,但我不想用记事本写,就改了一点点
<html>
<head>
<title>HTML 页面示例</title>
</head>
<body >
<center >
<h1 >欢迎阅读本书</h1>
<i>示例斜体字</i>
<b>示例粗体字</b>
<h3 ><font color="blue">兰色字体。下面是一个表格示例</font>
</h3>
<hr />
<br />
</center>
<table border ="1">
<tr >
<td>姓名</td>
<td>input type="text" name="Name"</td>
</tr>
<tr>
<td>注释</td>
<td>
<textarea name ="" rows ="3" cols ="65" wrap ></textarea>
</td>
</tr>
</table>
</body>
</html>
红色字体是书上的源代码,要放在记事本里面的。
有时间帮我看看下面的代码
<%@ Page Language="C#" AutoEventWireup="false" CodeFile="HelloWeb.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" >
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HTML 页面示例</title>
</head>
<body >
<center >
<h1 >欢迎阅读本书</h1>
<i>示例斜体字</i>
<b>示例粗体字</b>
<h3 ><font color="blue">兰色字体。下面是一个表格示例</font>
</h3>
<hr />
<br />
</center>
<table border ="1">
<tr >
<td>姓名</td>
<td>input type="text" name="Name"</td>
</tr>
<tr>
<td>注释</td>
<td>
<textarea name ="" rows ="3" cols ="65" wrap ></textarea>
</td>
</tr>
</table>
</body>
</html>
红色部分的wrap出现了错误:
错误 2 验证 (XHTML 1.0 Transitional): 此属性名称必须后跟一个等号(=)和一个值。如果用引号将该值括起来,则必须成对使用引号。 F:\WebSite2\HelloWeb.aspx 27 41 F:\WebSite2\
错误 3 验证 (XHTML 1.0 Transitional): 属性“wrap”不是元素“textarea”的有效属性。 F:\WebSite2\HelloWeb.aspx 27 41 F:\WebSite2\
然后,我wrap 改为wrap="1"
只还有上面的 错误 3 不知怎么解决呢?