没有找到相应的assambly,就是他的dll文件.

解决方案 »

  1.   

    程序没问题吧,我是直接把MSDN里的程序贴进去的啊,不会是程序问题。测试有错时不运行就直接退出了,没有错误报告。继续等
      

  2.   

    只有一句话  <%@ Application Codebehind="Global.asax.cs" Inherits="MyWeb.Global" %>这是global.asas.cs的内容:
    sing System;
    using System.Collections;
    using System.ComponentModel;
    using System.Web;
    using System.Web.SessionState;namespace MyWeb 
    {
    /// <summary>
    /// Global 的摘要说明。
    /// </summary>
    public class Global : System.Web.HttpApplication
    {
    /// <summary>
    /// 必需的设计器变量。
    /// </summary>
    private System.ComponentModel.IContainer components = null; public Global()
    {
    InitializeComponent();
    }

    protected void Application_Start(Object sender, EventArgs e)
    { }
     
    protected void Session_Start(Object sender, EventArgs e)
    { } protected void Application_BeginRequest(Object sender, EventArgs e)
    { } protected void Application_EndRequest(Object sender, EventArgs e)
    { } protected void Application_AuthenticateRequest(Object sender, EventArgs e)
    { } protected void Application_Error(Object sender, EventArgs e)
    { } protected void Session_End(Object sender, EventArgs e)
    { } protected void Application_End(Object sender, EventArgs e)
    { }

    #region Web 窗体设计器生成的代码
    /// <summary>
    /// 设计器支持所需的方法 - 不要使用代码编辑器修改
    /// 此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {    
    this.components = new System.ComponentModel.Container();
    }
    #endregion
    }
    }
      

  3.   

    Inherits="MyWeb.Global" ????????你的MyWeb.Global在哪裡?
      

  4.   

    源文件: E:\asp\MyWeb\global.asax