问:

Hello,

I am new to web services. I have built couple of web services with C# asp.net.

When I do "Start Without debugging" it opens a .asmx page that has all my services listed.


Question: Is there anyway to insert any browser side scripting (e.g. HTML/XHTML/JavaScript) on this .asmx page?

Hope I am clear enough.

Thank You,

Atit Thekdi


答:

By default .Net framework provides a default DefaultWsdlHelpGenerator.aspx under <windir>\Microsoft.Net\Framework\<version>\Config

 you can override it in your application by change the web.config.

 

定义ASP.NET中web service (asmx)默认页面的样式<?xml version="1.0" encoding="utf-8"?>
定义ASP.NET中web service (asmx)默认页面的样式
<configuration>
定义ASP.NET中web service (asmx)默认页面的样式  
<system.web>
定义ASP.NET中web service (asmx)默认页面的样式    
<webServices>
定义ASP.NET中web service (asmx)默认页面的样式      
<wsdlHelpGenerator href="MyServiceDescriptionGenerator.aspx"/>
定义ASP.NET中web service (asmx)默认页面的样式    
</webServices>
定义ASP.NET中web service (asmx)默认页面的样式  
</system.web>
定义ASP.NET中web service (asmx)默认页面的样式
</configuration>

Hope this helps

相关文章:

  • 2022-12-23
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2021-09-18
  • 2021-07-06
  • 2021-10-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案