but I can’t understand how I can create a web service registration page .. since there is no interface in the web service.
In fact, your reasoning is correct. The ASMX web service implements the SOAP protocol and cannot have any GUI. The best development of the web application interface in .NET you can use, for example, ASP.NET. This way you can create an ASP.NET application that will use this web service. By the way, ASX web services are considered obsolete technology, and you should use WCF instead.
source share