nehaperiyasamy Ответов: 1

Я получил ошибку парсера в своей программе что это значит


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: The 'CodeFile' attribute cannot be used without an 'Inherits' attribute.

Source Error: 



Line 1:  <%@ Page Language="vb" AutoEventWireup="false" Inherit="finalyrproj.login1" CodeFile="login.aspx.vb"  %>
Line 2:  
Line 3:  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


Что я уже пробовал:

у меня есть сообщение об ошибке и кодировании здесь

1 Ответов

Рейтинг:
2

Wendelius

Я думаю, что ты пропал s из Inherits. Видеть

<%@ Page Language="vb" AutoEventWireup="false" Inherit="finalyrproj.login1" CodeFile="login.aspx.vb"  %>

по сравнению с
<%@ Page Language="vb" AutoEventWireup="false" Inherits="finalyrproj.login1" CodeFile="login.aspx.vb"  %>