日期:2014-05-17  浏览次数:20422 次

html代码不知道什么地方出错了,求大神指点。。。

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!---->
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>HTML服务器控件</title>
    <script type="text/javascript" runat="server">
            protected void Page_Lode(object sender ,EventArgs e)
            {
                this.MyText.Value = "欢迎购买ASP.NET编程词典";
            }
    </script>
    <style type="text/css">
        #MyText
        {
            width: 188px;
            margin-top: 170px;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
        <input id="MyText" type="text" runat="server"/> </form>

</body>
</html>

 


编译的时候就有错误,可是我对过正确的代码,感觉一样啊,很郁闷呢。。。
HTML ASP.NET C# 编程

------解决方案--------------------
Page_Lode
->
Page_Load
------解决方案--------------------
<script type="text/javascript" runat="server">
去掉type
------解决方案--------------------
把命名空间加上。
namespace WebApplication1
{
    public partial class Default : System.Web.UI.Page