标题:第一个asp.net一般处理程序,浏览器访问不到,各种出错
只看楼主
高逆水行舟
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2016-3-19
结帖率:100%
 问题点数:0 回复次数:2 
第一个asp.net一般处理程序,浏览器访问不到,各种出错
程序代码:


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace ASP01Handle
{
    /// <summary>
    /// c01first 的摘要说明
    /// </summary>
    public class c01first : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            context.Response.Write("<title>我爱广州小蛮腰~小蛮腰上太阳伤~~!</title>");
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}




<?xml version="1.0" encoding="utf-8"?>

<!--
  有关如何配置 应用程序的详细信息,请访问
  http://go.
  -->

<configuration>
    <system.web>
      <compilation debug="true" targetFramework="4.5" />
      <urlMappings enabled="true"><add url="~/c01first.ashx" mappedUrl ="~/c01first.ashx"/>
      </urlMappings>
      <httpRuntime targetFramework="4.5" />
    </system.web>

</configuration>


搜索更多相关主题的帖子: 浏览器 
2017-03-30 11:21
wube
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:23
帖 子:1817
专家分:3681
注 册:2011-3-24
得分:0 
看起来是IIS(Web Server)设置上的问题吧~跟ASP无关~

不要選我當版主
2017-07-04 17:26
wube
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:23
帖 子:1817
专家分:3681
注 册:2011-3-24
得分:0 
仔细看原来你是用VS内建的Web Server~
印象中有些目录是预设会被拒绝访问的~

不要選我當版主
2017-07-05 13:46



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-475651-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.213347 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved