本人初学ASP.NET,在IE中出现以下错误怎么处理呀?

来源:百度知道 编辑:UC知道 时间:2024/05/29 23:18:38
Server Error in '/' Application.
--------------------------------------------------------------------------------

Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Unexpected end of file looking for </scrip> tag.

Source Error:

Line 1: <%@ Page Language="C#" EnableEventValidation="true" %>
Line 2: <scrip runat="server">
Line 3: Button1_Click(object sender, EventArgs e)
Line 4: {}

Source File: /a.aspx Line: 2

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.20506; ASP.NET Version:4.0.20506.1

你仔细看一下错误提示: 是不是少了一个</script> 结束标志呀.要有始有终的.

Parser Error Message: Unexpected end of file looking for </scrip> tag.

少结束标志 </scrip>

script标签也不是这么写啊………… 好好看看&……