the server responded with a status of 405 (Method Not Allowed)

前端 未结 5 1328
夕颜
夕颜 2020-12-30 14:51

I am new to Web Sevice, I am getting the following error when I tried to run my page (Local) in Chrome Console

ERROR

5条回答
  •  执笔经年
    2020-12-30 15:09

    try this

     [WebMethod]
     [ScriptMethod(UseHttpPost = true)]
     public List  GetCategories()
     {
          //code
     }
    

    or edit web.config

    
        ...
        
            
                   
                   --> 
                  
                  
                  
            
        
        ...
    
    

    Refer http://codeclimber.net.nz/archive/2006/12/22/How-to-enable-an-ASP.NET-WebService-to-listen-to-HTTP.aspx

提交回复
热议问题