我编译了我的ASP.Net文件并将它们上传到我的服务器(godaddy主机),但我得到了这个运行时间 错误:
Parser Error Message: Could not load the assembly 'App_Web_xmyvjx04'. Make
sure that it is compiled before accessing the page.
Line 1: <%@ page language="C#" autoeventwireup="true" inherits="movies,
App_Web_xmyvjx04" %>
我将文件App_Web_xmyvjx04.dll上传到我的bin文件夹
答案 0 :(得分:1)
您需要在继承中指定namespace.classname,并确保App_Web_xmyvjx04程序集在bin文件夹中。
示例:
<%@ page language="C#" autoeventwireup="true" inherits="App_Web_xmyvjx04.movies, App_Web_xmyvjx04" %>