2013-12-01 20 views
5

İşleyicileri ASP.NET'te kullanmayı öğreniyorum.İşleyici sınıf kodu tetiklenmiyor

Web Formunu ekledim ve uzantıyı "* .bspx" olarak değiştirdim. Web.config dosyasında çizgilerinin altına eklenir

namespace Experiments1 
    { 

    public class UniqueHandler: IHttpHandler 
    { 
     public void ProcessRequest(HttpContext context) 
     { 
      context.Response.ContentType = "text/plain"; 

      if (context.Request.RawUrl.Contains(".bspx")) 
      { 
       string newUrl = context.Request.RawUrl.Replace(".bspx", ".aspx"); 
       context.Server.Transfer(newUrl); 
      } 

     } 

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

:

böyle koduyla bir sınıf ekledi

sayfası "default.aspx" geri gönderme ile bağlantı düğmesi vardır
<system.webServer> 
    <handlers> 
     <add verb="*" path="*.bspx" name="Uniquehandler"/> 
    </handlers> 
    <modules runAllManagedModulesForAllRequests="true"/> 
    </system.webServer> 

Yukarıdaki sayfayı açmak için URL ayarlandı.

<asp:LinkButton ID="lnk" PostBackUrl="~/DifferentPage.bspx" runat="server" Text="Bspx"></asp:LinkButton> 

Ama yukarıdaki bağlantı butonu tıklandığında gösterir hatası:

The HTTP verb POST used to access path '/DifferentPage.bspx' is not allowed. 

** Düzenlendi ** Sen WebConfig içinde type kaçırmış

<?xml version="1.0"?> 
<!-- 
    For more information on how to configure your ASP.NET application, please visit 
    http://go.microsoft.com/fwlink/?LinkId=169433 
    --> 
<configuration> 
    <connectionStrings> 
    <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/> 
    <add name="LearnConnectionString" connectionString="Data Source=.;Initial Catalog=Learn;Integrated Security=True" providerName="System.Data.SqlClient"/> 
    <add name="LearnConnectionString2" connectionString="Data Source=.\sqlexpress;Initial Catalog=Learn;Integrated Security=True" providerName="System.Data.SqlClient"/> 
    </connectionStrings> 
    <system.web> 
    <compilation debug="true" targetFramework="4.0"> 
     <assemblies> 
     <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
     <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
     <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
     </assemblies> 
    </compilation> 
    <authentication mode="Forms"> 
     <forms loginUrl="~/Account/Login.aspx" timeout="2880"/> 
    </authentication> 
    <membership> 
     <providers> 
     <clear/> 
     <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/> 
     </providers> 
    </membership> 
    <profile> 
     <providers> 
     <clear/> 
     <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/> 
     </providers> 
    </profile> 
    <roleManager enabled="false"> 
     <providers> 
     <clear/> 
     <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/"/> 
     <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/"/> 
     </providers> 
    </roleManager> 
    </system.web> 
    <system.webServer> 
    <handlers> 
     <add verb="*" path="*.bspx" type="UniqueHandler, App_Code" name="Uniquehandler"/> 
    </handlers> 
    <modules runAllManagedModulesForAllRequests="true"/> 
    </system.webServer> 
</configuration> 
+0

"bspx" veya "aspx" kontrol edin benim web.config dosyası kodudur? –

+0

.bpx işlemek için bir işleyici oluşturmak için .bpx bilerek bitti. – RKh

+0

'UniqueHandler' gerçekten bir isim alanına sahip değil mi? Varsa, tam adı "web.config" içine koymanız gerekir. –

cevap

2

Web.config kodu dosya,

<add verb="*" path="*.bspx" type="UniqueHandler, App_Code" name="Uniquehandler"/> 

"App_Code" kodu, sınıf dosya klasörünüzün adıdır.

Düzenleme: Burada

İşte

enter image description here

App-verilerden benim uniqueHanlder sınıfı kodu

İşte
using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 

/// <summary> 
/// Summary description for UniqueHandler 
/// </summary> 
public class UniqueHandler : IHttpHandler 
{ 
    public UniqueHandler() 
    { 
     // 
     // TODO: Add constructor logic here 
     // 
    } 

    public bool IsReusable 
    { 
     get { return false; } 
    } 

    public void ProcessRequest(HttpContext context) 
    { 
     context.Response.ContentType = "text/plain"; 

     if (context.Request.RawUrl.Contains(".bspx")) 
     { 
      string newUrl = context.Request.RawUrl.Replace(".bspx", ".aspx"); 
      context.Server.Transfer(newUrl); 
     } 
    } 
} 

benim default.aspx olduğunu benim çözüm dosya detay kodu

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

<!DOCTYPE html> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server"> 
    <title></title> 
</head> 
<body> 
    <form id="form1" runat="server"> 
     <div> 
      <asp:TextBox ID="UsernameTextBox" Text="xxx" runat="server"></asp:TextBox>   
      <asp:LinkButton ID="lnk" PostBackUrl="~/Default2.bspx" runat="server" Text="Bspx"></asp:LinkButton> 
     </div> 
    </form> 
</body> 
</html> 

Ve bu

<?xml version="1.0"?> 
<!-- 
    For more information on how to configure your ASP.NET application, please visit 
    http://go.microsoft.com/fwlink/?LinkId=169433 
    --> 
<configuration> 
    <system.web> 
    <compilation debug="true" targetFramework="4.5"/> 
    <httpRuntime targetFramework="4.5"/> 
    </system.web> 
    <system.webServer> 
    <handlers> 
     <add verb="*" path="*.bspx" **type="UniqueHandler, App_Code"** name="Uniquehandler"/> 
    </handlers> 
    <modules runAllManagedModulesForAllRequests="true"/> 
    </system.webServer> 
</configuration> 
+0

Yukarıda belirtilenle aynı hata. – RKh

+0

Hayır Bu benim üzerimde çalışıyor! App-Code klasöründeki 'UniqueHandler'? –

+0

Posta kimliğinizi verebilir misiniz? Örnek çalışma başvurumu göndereceğim. –