Edit ASMX web service landing page wording/information? -
is there way edit/add information asmx web service page? add links external files helpful service. currently, it's displaying this:
my web services
the following operations supported. formal definition, please review service description.
testmethod
i add link after "tetsmethod
". thanks.
i facing same problem , found wsdlhelpgenerator element in web.config me out.
https://msdn.microsoft.com/en-us/library/ycx1yf7k(v=vs.100).aspx
i took source code of generated page, hand edited needed it, , saved static html file hooked wsdlhelpgenerator element:
<webservices> ... <wsdlhelpgenerator href="help.html"/> ... </webservices>
<system.web> ... <compilation> <buildproviders> <add extension=".html" type="system.web.compilation.pagebuildprovider" /> </buildproviders> </compilation> ... </system.web>
Comments
Post a Comment