日期:2014-05-16  浏览次数:21259 次

虚拟主机web.config配置问题,求教
本帖最后由 zhaoziyi0425 于 2014-04-11 20:52:03 编辑
最近刚开始学习asp.net,买了个虚拟主机,打算自己练习用
今天第一次将网站上传,但是无法访问,纠结了很久,本地调试都好好的。
后来干脆,VS2010新建网站,default.aspx页面加了一个label就传到FTP了,但是还是不行
于是求助虚拟主机客服,他们给检查了一下就说我的web.config配置有问题,我实在不知道哪里有问题,就下面这么几句话

<?xml version="1.0"?>
<!--
  有关如何配置 ASP.NET 应用程序的详细信息,请访问
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<customErrors mode="On"/>
</system.web>
</configuration>

请教大侠们是不是有什么很基础的配置我没搞?
干脆default.aspx也贴出来吧。。。

<%@ page language="VB" autoeventwireup="false" inherits="_Default, App_Web_xbbyd035" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>test</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
    
    </div>
    </form>
</body>
</html>


上传的时候有这么几个文件夹,我全给丢上去了

------解决方案--------------------
有可能是虚拟主机不支持.net 4.0,你把    <compilation debug="true" targetFramework="4.0" />去掉试一下。