如何只装framework而不装.net呢????你说的是vs.net吧。
直接建虚拟目录就行了。

解决方案 »

  1.   

    IIS 5.0 + .Net Framework 即可运行ASP.Net的程序!如果在.Net Framewrok 安装完毕后,你查看"站点属性"->"文档"一栏,如果有"default.aspx",一般来说,ASP.Net可以正常运行,如果你的ASP.Net程序在运行的时候出现了500错误,一般说来,是你的程序本身的问题!
      

  2.   

    你建一个虚拟目录,另外确认一下IIS和asp.net的进程有没有运行。
      

  3.   

    IIS 5.0 + .Net Framework 即可运行ASP.Net的程序! 在安装的时候有个顺序问题,你要是先装的.Net Framework要在运行栏里输入 Regsvr32.exe Aspnet_isapi.dll注册
      

  4.   

    首先安装iis
    然后安装vs.net 2002的第五张盘,里面包括sp2、mdac2.7、framework1.0等。如果不安装mdac2.7可能会连不上sql server数据库顺序倒了可以运行Regsvr32.exe Aspnet_isapi.dll注册
      

  5.   

    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: Could not load type 'WPrjStatus.Global'.Source Error: 
    Line 1:  <%@ Application Codebehind="Global.asax.cs" Inherits="WPrjStatus.Global" %> 
    这是什么错呢???
      

  6.   

    这个是你程序代码的错误,请将你的global.asax.cs的内容贴出来
      

  7.   

    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Web;
    using System.Web.SessionState;namespace WPrjStatus 
    {
    /// <summary>
    /// Summary description for Global.
    /// </summary>
    public class Global : System.Web.HttpApplication
    {
    //定义公共变量
    public static String AppDbf       = "Provider=OraOLEDB.Oracle.1;Password=itbook;Persist Security Info=True;User ID=itbook;Data Source=it_book;";
        public static String AppErrorPage = "ShowError.aspx";     public Global()
    {
    InitializeComponent();

    }

    protected void Application_Start(Object sender, EventArgs e)
    { }
     
    protected void Session_Start(Object sender, EventArgs e)
    {         
    Session.Timeout = 25;
    } 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 Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {    
    }
    #endregion
    }
    }
      

  8.   

    你应该先装好IIS,然后再装.Net Framework以及mdac2.7,应该可以运行了。