How to define the default style of ASMX page in ASP.NET
By default .Net framework provides a default DefaultWsdlHelpGenerator.aspx under
you can override it in your application by change the web.config.<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<webServices>
<wsdlHelpGenerator href="MyServiceDescriptionGenerator.aspx"/>
</webServices>
</system.web>
</configuration>
Post a Comment