当前位置:编程学习 > C#/ASP.NET >>

Win8-VS2012发布asp.net网站的问题

ASP新手,这两天在自己电脑上搞个一个VS2012,想做个网站在自己电脑的IIS上发布试试,地址就是localhost,先帖一下asp的代码,非常简单,就是搭配了一个css建了一个100像素正方形的黑色格子:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Sleepy.Default" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="style/Main.css" rel="stylesheet" type="text/css" />
    <title>Home Center</title>
</head>
<body>
    <form id="form1" runat="server">
    <div id="test">
    </div>
    </form>
</body>
</html>


这是CSS样式表:

body {
}
#test {
    width: 100px;
    height: 100px;
    background: #000;
}


VS查看里是很正常的,在IIS里查看文件也都有,但是一到网上Localhost里看,就是白的一片,具体的说是default网页里的代码都可以显示,但查看css就什么也没有了,是什么问题?
注:不是绝对路径相对路径的问题,我都试过了。 --------------------编程问答-------------------- 学一下IIS如何配制才能开始部署asp.net。
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,